From bf9126ac056d2532ccacd4f648fcdff15f9579e1 Mon Sep 17 00:00:00 2001 From: Anders Date: Mon, 28 Nov 2016 01:23:31 +0100 Subject: [PATCH] 1.0.0-alpha.4 --- README.md | 6 +++--- ReactiveSwift.podspec | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index abcd5d6ca..df18b119c 100644 --- a/README.md +++ b/README.md @@ -278,7 +278,7 @@ If you use [Carthage][] to manage your dependencies, simply add ReactiveSwift to your `Cartfile`: ``` -github "ReactiveCocoa/ReactiveSwift" "1.0.0-alpha.3" +github "ReactiveCocoa/ReactiveSwift" "1.0.0-alpha.4" ``` If you use Carthage to build your dependencies, make sure you have added `ReactiveSwift.framework`, and `Result.framework` to the "_Linked Frameworks and Libraries_" section of your target, and have included them in your Carthage framework copying build phase. @@ -289,7 +289,7 @@ If you use [CocoaPods][] to manage your dependencies, simply add ReactiveSwift to your `Podfile`: ``` -pod 'ReactiveSwift', '1.0.0-alpha.3' +pod 'ReactiveSwift', '1.0.0-alpha.4' ``` #### Swift Package Manager @@ -298,7 +298,7 @@ If you use Swift Package Manager, simply add ReactiveSwift as a dependency of your package in `Package.swift`: ``` -.Package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", "1.0.0-alpha.3") +.Package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", "1.0.0-alpha.4") ``` #### Git submodule diff --git a/ReactiveSwift.podspec b/ReactiveSwift.podspec index 4e4d2012a..8a67e9a49 100644 --- a/ReactiveSwift.podspec +++ b/ReactiveSwift.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "ReactiveSwift" # Version goes here and will be used to access the git tag later on, once we have a first release. - s.version = "1.0.0-alpha.3" + s.version = "1.0.0-alpha.4" s.summary = "Streams of values over time" s.description = <<-DESC ReactiveSwift is a Swift framework inspired by Functional Reactive Programming. It provides APIs for composing and transforming streams of values over time.