diff --git a/Example/Podfile.lock b/Example/Podfile.lock index e745b50f..7fb0a856 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -1,5 +1,5 @@ PODS: - - Nivelir (1.4.6) + - Nivelir (1.5.0) - SnapKit (5.0.1) DEPENDENCIES: @@ -15,7 +15,7 @@ EXTERNAL SOURCES: :path: ".." SPEC CHECKSUMS: - Nivelir: 740bb364a9db3ffb53a11e846dc7113c46c09107 + Nivelir: 7d07a137c04c64fae5831752705bff36fc5affff SnapKit: 97b92857e3df3a0c71833cce143274bf6ef8e5eb PODFILE CHECKSUM: da8b281ef18accce1d0505caaeb1d708354daf4e diff --git a/Nivelir.podspec b/Nivelir.podspec index d100a337..e19ae8f9 100644 --- a/Nivelir.podspec +++ b/Nivelir.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |spec| spec.name = "Nivelir" - spec.version = "1.4.6" + spec.version = "1.5.0" spec.summary = "A Swift DSL for navigation in iOS and tvOS apps with a simplified, chainable, and compile time safe syntax." spec.homepage = "https://github.com/hhru/Nivelir" diff --git a/Nivelir.xcodeproj/project.pbxproj b/Nivelir.xcodeproj/project.pbxproj index 3782a0bf..41ffe316 100755 --- a/Nivelir.xcodeproj/project.pbxproj +++ b/Nivelir.xcodeproj/project.pbxproj @@ -3055,7 +3055,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 1.4.6; + MARKETING_VERSION = 1.5.0; PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir; PRODUCT_NAME = Nivelir; SKIP_INSTALL = YES; @@ -3083,7 +3083,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 1.4.6; + MARKETING_VERSION = 1.5.0; PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir; PRODUCT_NAME = Nivelir; SKIP_INSTALL = YES; @@ -3148,7 +3148,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 1.4.6; + MARKETING_VERSION = 1.5.0; PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir; PRODUCT_NAME = Nivelir; SDKROOT = appletvos; @@ -3177,7 +3177,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); - MARKETING_VERSION = 1.4.6; + MARKETING_VERSION = 1.5.0; PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir; PRODUCT_NAME = Nivelir; SDKROOT = appletvos; diff --git a/README.md b/README.md index 487cd5a9..55fa2a9a 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ platform :ios, '12.0' use_frameworks! target '' do - pod 'Nivelir', '~> 1.4.6' + pod 'Nivelir', '~> 1.5.0' end ``` @@ -62,7 +62,7 @@ $ brew install carthage To integrate Nivelir into your Xcode project using Carthage, specify it in your `Cartfile`: ``` ogdl -github "hhru/Nivelir" ~> 1.4.6 +github "hhru/Nivelir" ~> 1.5.0 ``` Finally run `carthage update` to build the framework and drag the built `Nivelir.framework` into your Xcode project. @@ -74,7 +74,7 @@ The [Swift Package Manager](https://swift.org/package-manager/) is a tool for ma To integrate Nivelir into your Xcode project using Swift Package Manager, add the following as a dependency to your `Package.swift`: ``` swift -.package(url: "https://github.com/hhru/Nivelir.git", from: "1.4.6") +.package(url: "https://github.com/hhru/Nivelir.git", from: "1.5.0") ``` Then specify `"Nivelir"` as a dependency of the Target in which you wish to use Nivelir. @@ -89,7 +89,7 @@ let package = Package( .library(name: "MyPackage", targets: ["MyPackage"]) ], dependencies: [ - .package(url: "https://github.com/hhru/Nivelir.git", from: "1.4.6") + .package(url: "https://github.com/hhru/Nivelir.git", from: "1.5.0") ], targets: [ .target(name: "MyPackage", dependencies: ["Nivelir"])