Skip to content

Commit

Permalink
Merge pull request #30 from BalestraPatrick/bump-0.2.0
Browse files Browse the repository at this point in the history
Bump version to 0.2.0
  • Loading branch information
BalestraPatrick authored Jun 13, 2019
2 parents 5730cc2 + 7b3a464 commit a399ce9
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MobiusCore",
"version": "0.1.2",
"version": "0.2.0",
"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.2"
"tag": "0.2.0"
},
"platforms": {
"ios": "10.0"
Expand Down
6 changes: 3 additions & 3 deletions MobiusExtras.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MobiusExtras",
"version": "0.1.2",
"version": "0.2.0",
"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.2"
"tag": "0.2.0"
},
"platforms": {
"ios": "10.0"
Expand All @@ -21,7 +21,7 @@
"source_files": "MobiusExtras/Source/**/*.swift",
"dependencies": {
"MobiusCore": [
"0.1.2"
"0.2.0"
]
}
}
8 changes: 4 additions & 4 deletions MobiusNimble.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MobiusNimble",
"version": "0.1.2",
"version": "0.2.0",
"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.2"
"tag": "0.2.0"
},
"platforms": {
"ios": "10.0"
Expand All @@ -24,10 +24,10 @@
],
"dependencies": {
"MobiusCore": [
"0.1.2"
"0.2.0"
],
"MobiusTest": [
"0.1.2"
"0.2.0"
],
"Nimble": [
"~> 8.0"
Expand Down
6 changes: 3 additions & 3 deletions MobiusTest.podspec.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MobiusTest",
"version": "0.1.2",
"version": "0.2.0",
"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.2"
"tag": "0.2.0"
},
"platforms": {
"ios": "10.0"
Expand All @@ -24,7 +24,7 @@
],
"dependencies": {
"MobiusCore": [
"0.1.2"
"0.2.0"
]
}
}
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
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.2'
pod 'MobiusCore', '0.2.0'
```

Optionally, you can also choose to integrate `MobiusExtras`, `MobiusNimble` or `MobiusTest`:
```ruby
pod 'MobiusExtras', '0.1.2'
pod 'MobiusNimble', '0.1.2'
pod 'MobiusTest', '0.1.2'
pod 'MobiusExtras', '0.2.0'
pod 'MobiusNimble', '0.2.0'
pod 'MobiusTest', '0.2.0'
```
</details>

<details><summary>Carthage</summary>

Add the following entry in your `Cartfile`:
```
github "spotify/Mobius.swift" "0.1.2"
github "spotify/Mobius.swift" "0.2.0"
```

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.1"))
.package(url: "https://github.com/spotify/Mobius.swift.git", .upToNextMajor(from: "0.2.0"))
```
</details>

Expand Down

0 comments on commit a399ce9

Please sign in to comment.