From 7b3a4646ba58fb08039c3066f7e27e8b55f7e811 Mon Sep 17 00:00:00 2001 From: Patrick Balestra Date: Wed, 12 Jun 2019 18:12:20 +0200 Subject: [PATCH] Bump version to 0.2.0 --- MobiusCore.podspec.json | 4 ++-- MobiusExtras.podspec.json | 6 +++--- MobiusNimble.podspec.json | 8 ++++---- MobiusTest.podspec.json | 6 +++--- README.md | 12 ++++++------ 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/MobiusCore.podspec.json b/MobiusCore.podspec.json index 10726c7b..ac9bb0df 100644 --- a/MobiusCore.podspec.json +++ b/MobiusCore.podspec.json @@ -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", @@ -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" diff --git a/MobiusExtras.podspec.json b/MobiusExtras.podspec.json index ce574f86..6fb046c3 100644 --- a/MobiusExtras.podspec.json +++ b/MobiusExtras.podspec.json @@ -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", @@ -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" @@ -21,7 +21,7 @@ "source_files": "MobiusExtras/Source/**/*.swift", "dependencies": { "MobiusCore": [ - "0.1.2" + "0.2.0" ] } } diff --git a/MobiusNimble.podspec.json b/MobiusNimble.podspec.json index 74b8af08..46cda61c 100644 --- a/MobiusNimble.podspec.json +++ b/MobiusNimble.podspec.json @@ -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", @@ -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" @@ -24,10 +24,10 @@ ], "dependencies": { "MobiusCore": [ - "0.1.2" + "0.2.0" ], "MobiusTest": [ - "0.1.2" + "0.2.0" ], "Nimble": [ "~> 8.0" diff --git a/MobiusTest.podspec.json b/MobiusTest.podspec.json index db026b81..3aa19c08 100644 --- a/MobiusTest.podspec.json +++ b/MobiusTest.podspec.json @@ -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", @@ -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" @@ -24,7 +24,7 @@ ], "dependencies": { "MobiusCore": [ - "0.1.2" + "0.2.0" ] } } diff --git a/README.md b/README.md index c1d0c001..127d28bd 100644 --- a/README.md +++ b/README.md @@ -29,14 +29,14 @@ 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' ``` @@ -44,7 +44,7 @@ pod 'MobiusTest', '0.1.2' 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). @@ -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")) ```