From 3495369ccfd16fdeaf028e61ccffe6fc3b87931b Mon Sep 17 00:00:00 2001 From: Anders Date: Thu, 15 Dec 2016 15:35:39 +0100 Subject: [PATCH] 1.0.0-rc.1 --- README.md | 6 +++--- ReactiveSwift.podspec | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cae1ee969..00c27d01f 100644 --- a/README.md +++ b/README.md @@ -367,7 +367,7 @@ If you use [Carthage][] to manage your dependencies, simply add ReactiveSwift to your `Cartfile`: ``` -github "ReactiveCocoa/ReactiveSwift" "1.0.0-alpha.4" +github "ReactiveCocoa/ReactiveSwift" "1.0.0-rc.1" ``` 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. @@ -378,7 +378,7 @@ If you use [CocoaPods][] to manage your dependencies, simply add ReactiveSwift to your `Podfile`: ``` -pod 'ReactiveSwift', '1.0.0-alpha.4' +pod 'ReactiveSwift', '1.0.0-rc.1' ``` #### Swift Package Manager @@ -387,7 +387,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.4") +.Package(url: "https://github.com/ReactiveCocoa/ReactiveSwift.git", "1.0.0-rc.1") ``` #### Git submodule diff --git a/ReactiveSwift.podspec b/ReactiveSwift.podspec index 62d3b1912..61a198f02 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.4" + s.version = "1.0.0-rc.1" 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.