Skip to content

Commit

Permalink
Release 1.0.0-alpha.2 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
almazrafi authored Mar 10, 2021
1 parent 894f22e commit 67fb94b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
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.0.0-alpha.1"
spec.version = "1.0.0-alpha.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 @@ -1440,7 +1440,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.0.0-alpha.1";
MARKETING_VERSION = "1.0.0-alpha.2";
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
PRODUCT_NAME = Nivelir;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1469,7 +1469,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.0.0-alpha.1";
MARKETING_VERSION = "1.0.0-alpha.2";
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
PRODUCT_NAME = Nivelir;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1539,7 +1539,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.0.0-alpha.1";
MARKETING_VERSION = "1.0.0-alpha.2";
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
PRODUCT_NAME = Nivelir;
SDKROOT = appletvos;
Expand Down Expand Up @@ -1569,7 +1569,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.0.0-alpha.1";
MARKETING_VERSION = "1.0.0-alpha.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 @@ -42,7 +42,7 @@ platform :ios, '10.0'
use_frameworks!

target '<Your Target Name>' do
pod 'Nivelir', '~> 1.0.0-alpha.1'
pod 'Nivelir', '~> 1.0.0-alpha.2'
end
```

Expand All @@ -60,7 +60,7 @@ $ brew install carthage

To integrate Nivelir into your Xcode project using Carthage, specify it in your `Cartfile`:
```ogdl
github "hhru/Nivelir" ~> 1.0.0-alpha.1
github "hhru/Nivelir" ~> 1.0.0-alpha.2
```

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

Expand All @@ -87,7 +87,7 @@ let package = Package(
.library(name: "MyPackage", targets: ["MyPackage"])
],
dependencies: [
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.0.0-alpha.1")
.package(url: "https://github.com/hhru/Nivelir.git", from: "1.0.0-alpha.2")
],
targets: [
.target(name: "MyPackage", dependencies: ["Nivelir"])
Expand Down

0 comments on commit 67fb94b

Please sign in to comment.