Skip to content

Commit

Permalink
Release 1.2.2 (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
almazrafi authored Feb 15, 2022
1 parent d33dd4d commit 6730b8e
Show file tree
Hide file tree
Showing 364 changed files with 380 additions and 380 deletions.
6 changes: 3 additions & 3 deletions Example/NivelirExample/Routing/Deeplinks/ChatDeeplink.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ extension ChatDeeplink: URLDeeplink {
host: String?,
path: [String],
query: ChatDeeplinkPayload?,
context: Services
context: Any
) throws -> ChatDeeplink? {
guard let payload = query, scheme == "nivelir", host == "chat" else {
return nil
Expand All @@ -45,7 +45,7 @@ extension ChatDeeplink: NotificationDeeplink {
categoryIdentifier: String,
actionIdentifier: String,
userInfo: ChatDeeplinkPayload,
context: Services
context: Any
) throws -> Self? {
Self(roomID: userInfo.roomID, chatID: userInfo.chatID)
}
Expand All @@ -56,7 +56,7 @@ extension ChatDeeplink: ShortcutDeeplink {
static func shortcut(
type: String,
userInfo: ChatDeeplinkPayload?,
context: Services
context: Any
) throws -> ChatDeeplink? {
guard let payload = userInfo else {
return nil
Expand Down
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.2.1)
- Nivelir (1.2.2)
- SnapKit (5.0.1)

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

SPEC CHECKSUMS:
Nivelir: 0c19d57d6fd8a72aef3d90fcff012b9b7c269b5f
Nivelir: 918547baaaf97b30bf72ec2547961e8e512443bd
SnapKit: 97b92857e3df3a0c71833cce143274bf6ef8e5eb

PODFILE CHECKSUM: e80e18eff6710a7cef02a1eea6ba0d14ca9f3c38
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.2.1"
spec.version = "1.2.2"
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 @@ -2341,7 +2341,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.1;
MARKETING_VERSION = 1.2.2;
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
PRODUCT_NAME = Nivelir;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -2370,7 +2370,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.1;
MARKETING_VERSION = 1.2.2;
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
PRODUCT_NAME = Nivelir;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -2440,7 +2440,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.1;
MARKETING_VERSION = 1.2.2;
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
PRODUCT_NAME = Nivelir;
SDKROOT = appletvos;
Expand Down Expand Up @@ -2470,7 +2470,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 1.2.1;
MARKETING_VERSION = 1.2.2;
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
PRODUCT_NAME = Nivelir;
SDKROOT = appletvos;
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ platform :ios, '10.0'
use_frameworks!

target '<Your Target Name>' do
pod 'Nivelir', '~> 1.2.1'
pod 'Nivelir', '~> 1.2.2'
end
```

Expand All @@ -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.2.1
github "hhru/Nivelir" ~> 1.2.2
```

Finally run `carthage update` to build the framework and drag the built `Nivelir.framework` into your Xcode project.
Expand All @@ -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.2.1")
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.2.2")
```
Then specify `"Nivelir"` as a dependency of the Target in which you wish to use Nivelir.

Expand All @@ -89,7 +89,7 @@ let package = Package(
.library(name: "MyPackage", targets: ["MyPackage"])
],
dependencies: [
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.2.1")
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.2.2")
],
targets: [
.target(name: "MyPackage", dependencies: ["Nivelir"])
Expand Down
2 changes: 1 addition & 1 deletion docs/ActionSheet.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Actions.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Alert.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Call.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/DeeplinkManager.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/DefaultScreenIterator.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/DefaultScreenLogger.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/ScreenNavigator.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Classes/ScreenPayload.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Deeplink.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/DocumentPreview.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/AlertTextField.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/DictionaryDataDecodingStrategy.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/DictionaryDateDecodingStrategy.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/DictionaryKeyDecodingStrategy.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/MediaPickerImageExportPreset.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/MediaPickerSource.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/MediaPickerType.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/ScreenIterationResult.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/ScreenModalStyle.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/ScreenRootAnimation.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/ScreenStackAnimation.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/ScreenTabAnimation.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/URLQueryDataDecodingStrategy.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/URLQueryDateDecodingStrategy.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/URLQueryKeyDecodingStrategy.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Enums/URLQueryNonConformingFloatDecodingStrategy.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="../index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Errors.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
2 changes: 1 addition & 1 deletion docs/Extensions.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<header class="header">
<p class="header-col header-col--primary">
<a class="header-link" href="index.html">
Nivelir 1.2.1 Docs
Nivelir 1.2.2 Docs
</a>
(39% documented)
</p>
Expand Down
Loading

0 comments on commit 6730b8e

Please sign in to comment.