Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Tsybulko committed Mar 31, 2022
1 parent 8745518 commit 914118b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MVISwift.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "MVISwift"
spec.version = "1.0.0-alpha.1"
spec.version = "1.0.0"
spec.summary = "MVISwift is a modern, Swift-based MVI framework with Combine"

spec.homepage = "https://github.com/hhru/mvi-swift"
Expand Down
4 changes: 2 additions & 2 deletions MVISwift.xcodeproj/xcshareddata/xcschemes/MVISwift.xcscheme
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DC28189F27C65FBD00223646"
BuildableName = "MVISwift_iOS.framework"
BuildableName = "MVISwift.framework"
BlueprintName = "MVISwift"
ReferencedContainer = "container:MVISwift.xcodeproj">
</BuildableReference>
Expand Down Expand Up @@ -61,7 +61,7 @@
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "DC28189F27C65FBD00223646"
BuildableName = "MVISwift_iOS.framework"
BuildableName = "MVISwift.framework"
BlueprintName = "MVISwift"
ReferencedContainer = "container:MVISwift.xcodeproj">
</BuildableReference>
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, '13.0'
use_frameworks!

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

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

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

Finally run `carthage update` to build the framework and drag the built `MVISwift.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 MVISwift 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/mvi-swift.git", from: "1.0.0-alpha.1")
.package(url: "https://github.com/hhru/mvi-swift.git", from: "1.0.0")
```
Then specify `"MVISwift"` as a dependency of the Target in which you wish to use MVISwift.

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

0 comments on commit 914118b

Please sign in to comment.