From 376c78aa5850757b0654ea654a4cc70d1dad01ef Mon Sep 17 00:00:00 2001 From: Anders Ha Date: Tue, 27 Jun 2017 15:38:42 +0800 Subject: [PATCH] 2.0.0-rc.1 --- CHANGELOG.md | 1 + ReactiveSwift.podspec | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c3d9f17b..ba0cac81b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # master *Please add new entries at the top.* +# 2.0.0-rc.1 1. If the input observer of a `Signal` deinitializes while the `Signal` has not yet terminated, an `interrupted` event would now be automatically sent. (#463, kudos to @andersio) 1. `ValidationResult` and `ValidatorOutput` have been renamed to `ValidatingProperty.Result` and `ValidatingProperty.Decision`, respectively. (#443) diff --git a/ReactiveSwift.podspec b/ReactiveSwift.podspec index e0771ae64..c0dcf23b8 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 = "2.0.0-alpha.3" + s.version = "2.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.