Skip to content

Commit 0a50e7e

Browse files
authored
Release 1.7.0 (#114)
1 parent bf745d9 commit 0a50e7e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

Example/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- Nivelir (1.6.3)
2+
- Nivelir (1.7.0)
33
- SnapKit (5.6.0)
44

55
DEPENDENCIES:
@@ -15,7 +15,7 @@ EXTERNAL SOURCES:
1515
:path: ".."
1616

1717
SPEC CHECKSUMS:
18-
Nivelir: b3f92ed5131ab661e609f3dfb41b41aeb66f2697
18+
Nivelir: 5ef52d26d4baf0c05adee5a21a2a172639b147d2
1919
SnapKit: e01d52ebb8ddbc333eefe2132acf85c8227d9c25
2020

2121
PODFILE CHECKSUM: da8b281ef18accce1d0505caaeb1d708354daf4e

Nivelir.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "Nivelir"
3-
spec.version = "1.6.3"
3+
spec.version = "1.7.0"
44
spec.summary = "A Swift DSL for navigation in iOS and tvOS apps with a simplified, chainable, and compile time safe syntax."
55

66
spec.homepage = "https://github.com/hhru/Nivelir"

Nivelir.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3389,7 +3389,7 @@
33893389
"@executable_path/Frameworks",
33903390
"@loader_path/Frameworks",
33913391
);
3392-
MARKETING_VERSION = 1.6.3;
3392+
MARKETING_VERSION = 1.7.0;
33933393
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
33943394
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
33953395
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
@@ -3420,7 +3420,7 @@
34203420
"@executable_path/Frameworks",
34213421
"@loader_path/Frameworks",
34223422
);
3423-
MARKETING_VERSION = 1.6.3;
3423+
MARKETING_VERSION = 1.7.0;
34243424
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
34253425
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
34263426
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
@@ -3488,7 +3488,7 @@
34883488
"@executable_path/Frameworks",
34893489
"@loader_path/Frameworks",
34903490
);
3491-
MARKETING_VERSION = 1.6.3;
3491+
MARKETING_VERSION = 1.7.0;
34923492
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
34933493
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
34943494
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
@@ -3520,7 +3520,7 @@
35203520
"@executable_path/Frameworks",
35213521
"@loader_path/Frameworks",
35223522
);
3523-
MARKETING_VERSION = 1.6.3;
3523+
MARKETING_VERSION = 1.7.0;
35243524
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
35253525
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
35263526
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The [Swift Package Manager](https://swift.org/package-manager/) is a tool for ma
3838
To integrate Nivelir into your Xcode project using Swift Package Manager,
3939
add the following as a dependency to your `Package.swift`:
4040
``` swift
41-
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.6.3")
41+
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.7.0")
4242
```
4343
Then specify `"Nivelir"` as a dependency of the Target in which you wish to use Nivelir.
4444

@@ -53,7 +53,7 @@ let package = Package(
5353
.library(name: "MyPackage", targets: ["MyPackage"])
5454
],
5555
dependencies: [
56-
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.6.3")
56+
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.7.0")
5757
],
5858
targets: [
5959
.target(name: "MyPackage", dependencies: ["Nivelir"])
@@ -71,7 +71,7 @@ $ brew install carthage
7171

7272
To integrate Nivelir into your Xcode project using Carthage, specify it in your `Cartfile`:
7373
``` ogdl
74-
github "hhru/Nivelir" ~> 1.6.3
74+
github "hhru/Nivelir" ~> 1.7.0
7575
```
7676

7777
Finally run `carthage update` to build the framework and drag the built `Nivelir.framework` into your Xcode project.
@@ -89,7 +89,7 @@ platform :ios, '13.0'
8989
use_frameworks!
9090

9191
target '<Your Target Name>' do
92-
pod 'Nivelir', '~> 1.6.3'
92+
pod 'Nivelir', '~> 1.7.0'
9393
end
9494
```
9595

0 commit comments

Comments
 (0)