Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.8.1 #119

Merged
merged 1 commit into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- Nivelir (1.8.0)
- Nivelir (1.8.1)
- SnapKit (5.6.0)

DEPENDENCIES:
Expand All @@ -15,7 +15,7 @@ EXTERNAL SOURCES:
:path: ".."

SPEC CHECKSUMS:
Nivelir: 0d036d03829f32902cd6f1df8f220c7e0f2b2742
Nivelir: 2ab20e3f31e564248423bc8d264ddfd4de4ef14e
SnapKit: e01d52ebb8ddbc333eefe2132acf85c8227d9c25

PODFILE CHECKSUM: da8b281ef18accce1d0505caaeb1d708354daf4e
Expand Down
2 changes: 1 addition & 1 deletion Nivelir.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "Nivelir"
spec.version = "1.8.0"
spec.version = "1.8.1"
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"
Expand Down
8 changes: 4 additions & 4 deletions Nivelir.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3395,7 +3395,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.8.0;
MARKETING_VERSION = 1.8.1;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
Expand Down Expand Up @@ -3426,7 +3426,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.8.0;
MARKETING_VERSION = 1.8.1;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
Expand Down Expand Up @@ -3494,7 +3494,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.8.0;
MARKETING_VERSION = 1.8.1;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
Expand Down Expand Up @@ -3526,7 +3526,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.8.0;
MARKETING_VERSION = 1.8.1;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,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.8.0")
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.8.1")
```
Then specify `"Nivelir"` as a dependency of the Target in which you wish to use Nivelir.

Expand All @@ -53,7 +53,7 @@ let package = Package(
.library(name: "MyPackage", targets: ["MyPackage"])
],
dependencies: [
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.8.0")
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.8.1")
],
targets: [
.target(name: "MyPackage", dependencies: ["Nivelir"])
Expand All @@ -71,7 +71,7 @@ $ brew install carthage

To integrate Nivelir into your Xcode project using Carthage, specify it in your `Cartfile`:
``` ogdl
github "hhru/Nivelir" ~> 1.8.0
github "hhru/Nivelir" ~> 1.8.1
```

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

target '<Your Target Name>' do
pod 'Nivelir', '~> 1.8.0'
pod 'Nivelir', '~> 1.8.1'
end
```

Expand Down
Loading