Skip to content

Commit

Permalink
Release 1.0.0 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
almazrafi authored Jun 5, 2021
1 parent bb23a7d commit e434a0a
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Example/NivelirExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -286,8 +286,8 @@
isa = PBXNativeTarget;
buildConfigurationList = C017D14725FBAD11008B90C0 /* Build configuration list for PBXNativeTarget "NivelirExample" */;
buildPhases = (
C0B5A45126625B8900D7521C /* SwiftLint */,
BAA64B09CFA32C6A3C6A0330 /* [CP] Check Pods Manifest.lock */,
C0B5A45126625B8900D7521C /* SwiftLint */,
C017D12F25FBAD0F008B90C0 /* Sources */,
C017D13025FBAD0F008B90C0 /* Frameworks */,
C017D13125FBAD0F008B90C0 /* Resources */,
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.0.0-beta.3)
- Nivelir (1.0.0)
- SnapKit (5.0.1)

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

SPEC CHECKSUMS:
Nivelir: dd478d54463262aceed163338ec17dce11fd7005
Nivelir: ccada14f2b4c8c29c60d877b60d227037ba5e466
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.0.0-beta.3"
spec.version = "1.0.0"
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 @@ -1840,7 +1840,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.0.0-beta.3";
MARKETING_VERSION = "1.0.0";
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
PRODUCT_NAME = Nivelir;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1869,7 +1869,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.0.0-beta.3";
MARKETING_VERSION = "1.0.0";
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
PRODUCT_NAME = Nivelir;
SKIP_INSTALL = YES;
Expand Down Expand Up @@ -1939,7 +1939,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.0.0-beta.3";
MARKETING_VERSION = "1.0.0";
PRODUCT_BUNDLE_IDENTIFIER = ru.hh.Nivelir;
PRODUCT_NAME = Nivelir;
SDKROOT = appletvos;
Expand Down Expand Up @@ -1969,7 +1969,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = "1.0.0-beta.3";
MARKETING_VERSION = "1.0.0";
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 @@ -53,7 +53,7 @@ platform :ios, '10.0'
use_frameworks!

target '<Your Target Name>' do
pod 'Nivelir', '~> 1.0.0-beta.3'
pod 'Nivelir', '~> 1.0.0'
end
```

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.0.0-beta.3
github "hhru/Nivelir" ~> 1.0.0
```

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

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

0 comments on commit e434a0a

Please sign in to comment.