Skip to content

Commit

Permalink
Release 1.9.3 (#131)
Browse files Browse the repository at this point in the history
* Umbrella header removed
* release 1.9.3
  • Loading branch information
BarabanovVVl authored Dec 19, 2024
1 parent 0261d9d commit 98c959e
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- Nivelir (1.9.2)
- Nivelir (1.9.3)
- SnapKit (5.6.0)

DEPENDENCIES:
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.9.2"
spec.version = "1.9.3"
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 @@ -3392,7 +3392,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.9.2;
MARKETING_VERSION = 1.9.3;
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 @@ -3424,7 +3424,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.9.2;
MARKETING_VERSION = 1.9.3;
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 @@ -3492,7 +3492,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.9.2;
MARKETING_VERSION = 1.9.3;
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 @@ -3524,7 +3524,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.9.2;
MARKETING_VERSION = 1.9.3;
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.9.2")
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.9.3")
```
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.9.2")
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.9.3")
],
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.9.2
github "hhru/Nivelir" ~> 1.9.3
```

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.9.2'
pod 'Nivelir', '~> 1.9.3'
end
```

Expand Down
10 changes: 9 additions & 1 deletion Sources/Screen/Actions/Generic/ScreenNavigateAction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,20 @@ extension ScreenNavigator {

public func navigate(
to route: (_ route: ScreenWindowRoute) -> ScreenRouteConvertible,
completion: Completion? = nil
completion: Completion?
) {
navigate(
to: route(.initial).route(),
completion: completion
)
}

public func navigate(
to route: (_ route: ScreenWindowRoute) -> ScreenRouteConvertible
) {
navigate(
to: route(.initial).route()
)
}
}
#endif

0 comments on commit 98c959e

Please sign in to comment.