Skip to content

Commit

Permalink
Merge pull request #21 from spotify/release-0.1.1
Browse files Browse the repository at this point in the history
Bump podspecs and README to 0.1.1
  • Loading branch information
dflems committed Apr 10, 2019
2 parents 5cf2990 + c84519f commit d8cb4fd
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions MobiusCore.podspec.json
@@ -1,6 +1,6 @@
{
"name": "MobiusCore",
"version": "0.1.0-alpha",
"version": "0.1.1",
"summary": "A functional reactive framework for managing state evolution and side-effects",
"authors": "Spotify AB",
"homepage": "https://github.com/spotify/Mobius.swift",
Expand All @@ -11,7 +11,7 @@
},
"source": {
"git": "https://github.com/spotify/Mobius.swift.git",
"tag": "0.1.0-alpha"
"tag": "0.1.1"
},
"platforms": {
"ios": "10.0"
Expand Down
6 changes: 3 additions & 3 deletions MobiusExtras.podspec.json
@@ -1,6 +1,6 @@
{
"name": "MobiusExtras",
"version": "0.1.0-alpha",
"version": "0.1.1",
"summary": "A functional reactive framework for managing state evolution and side-effects: Extra Helpers",
"authors": "Spotify AB",
"homepage": "https://github.com/spotify/Mobius.swift/tree/master/MobiusExtras",
Expand All @@ -11,7 +11,7 @@
},
"source": {
"git": "https://github.com/spotify/Mobius.swift.git",
"tag": "0.1.0-alpha"
"tag": "0.1.1"
},
"platforms": {
"ios": "10.0"
Expand All @@ -21,7 +21,7 @@
"source_files": "MobiusExtras/Source/**/*.swift",
"dependencies": {
"MobiusCore": [
"0.1.0-alpha"
"0.1.1"
]
}
}
8 changes: 4 additions & 4 deletions MobiusNimble.podspec.json
@@ -1,6 +1,6 @@
{
"name": "MobiusNimble",
"version": "0.1.0-alpha",
"version": "0.1.1",
"summary": "A functional reactive framework for managing state evolution and side-effects: Nimble Helpers",
"authors": "Spotify AB",
"homepage": "https://github.com/spotify/Mobius.swift/tree/master/MobiusNimble",
Expand All @@ -11,7 +11,7 @@
},
"source": {
"git": "https://github.com/spotify/Mobius.swift.git",
"tag": "0.1.0-alpha"
"tag": "0.1.1"
},
"platforms": {
"ios": "10.0"
Expand All @@ -24,10 +24,10 @@
],
"dependencies": {
"MobiusCore": [
"0.1.0-alpha"
"0.1.1"
],
"MobiusTest": [
"0.1.0-alpha"
"0.1.1"
],
"Nimble": [
"~> 7.0"
Expand Down
6 changes: 3 additions & 3 deletions MobiusTest.podspec.json
@@ -1,6 +1,6 @@
{
"name": "MobiusTest",
"version": "0.1.0-alpha",
"version": "0.1.1",
"summary": "A functional reactive framework for managing state evolution and side-effects: Test Helpers",
"authors": "Spotify AB",
"homepage": "https://github.com/spotify/Mobius.swift/tree/master/MobiusTest",
Expand All @@ -11,7 +11,7 @@
},
"source": {
"git": "https://github.com/spotify/Mobius.swift.git",
"tag": "0.1.0-alpha"
"tag": "0.1.1"
},
"platforms": {
"ios": "10.0"
Expand All @@ -24,7 +24,7 @@
],
"dependencies": {
"MobiusCore": [
"0.1.0-alpha"
"0.1.1"
]
}
}
12 changes: 6 additions & 6 deletions README.md
Expand Up @@ -29,22 +29,22 @@ Mobius.swift supports most popular dependency managers. Choose your preferred me

Add the following entry in your `Podfile`:
```ruby
pod 'MobiusCore', '0.1.0-alpha'
pod 'MobiusCore', '0.1.1'
```

Optionally, you can also choose to integrate `MobiusExtras`, `MobiusNimble` or `MobiusTest`:
```ruby
pod 'MobiusExtras', '0.1.0-alpha'
pod 'MobiusNimble', '0.1.0-alpha'
pod 'MobiusTest', '0.1.0-alpha'
pod 'MobiusExtras', '0.1.1'
pod 'MobiusNimble', '0.1.1'
pod 'MobiusTest', '0.1.1'
```
</details>

<details><summary>Carthage</summary>

Add the following entry in your `Cartfile`:
```
github "spotify/Mobius.swift" "0.1.0-alpha"
github "spotify/Mobius.swift" "0.1.1"
```

There are some additional steps to take as explained in the [Carthage documentation](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application).
Expand All @@ -55,7 +55,7 @@ There are some additional steps to take as explained in the [Carthage documentat

Add the following entry to your `Package.swift`:
```swift
.package(url: "https://github.com/spotify/Mobius.swift.git", .upToNextMajor(from: "0.1.0-alpha"))
.package(url: "https://github.com/spotify/Mobius.swift.git", .upToNextMajor(from: "0.1.1"))
```
</details>

Expand Down

0 comments on commit d8cb4fd

Please sign in to comment.