From 61261f2ee97ace3e08713921dd9406669b9debee Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Sun, 8 Oct 2017 14:13:59 +0200 Subject: [PATCH] 4.0.0 rc.0 --- CHANGELOG.md | 7 +++++++ RxBlocking.podspec | 4 ++-- RxCocoa.podspec | 4 ++-- RxSwift.podspec | 2 +- RxTest.podspec | 4 ++-- 5 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3eba19f9e..9b61911f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,13 @@ All notable changes to this project will be documented in this file. * Call `controlTextDidChange(…)` as an optional method. #1406 * Fixed issue with `NSControl.rx.value` regarding multiple observers. #1399 +## [4.0.0-rc.0](https://github.com/ReactiveX/RxSwift/releases/tag/4.0.0-rc.0) + +* Deprecates `image(transitionType:)` in favor of `image`. +* Changes return type of `ignoreElements` to `Completable`. #1436 +* Removes warning of sequence completion from `Binder`. #1431 +* Deprecates `Variable` in favor of `BehaviorRelay`. + ## [4.0.0-beta.1](https://github.com/ReactiveX/RxSwift/releases/tag/4.0.0-beta.1) * Adds `attributedText` to `UITextField`. #1249 diff --git a/RxBlocking.podspec b/RxBlocking.podspec index 6a50ee526..baaa7b3da 100644 --- a/RxBlocking.podspec +++ b/RxBlocking.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxBlocking" - s.version = "4.0.0-beta.1" + s.version = "4.0.0-rc.0" s.summary = "RxSwift Blocking operatos" s.description = <<-DESC Set of blocking operators for RxSwift. These operators are mostly intended for unit/integration tests @@ -25,5 +25,5 @@ Waiting for observable sequence to complete before exiting command line applicat s.source_files = 'RxBlocking/**/*.swift', 'Platform/**/*.swift' s.exclude_files = 'RxBlocking/Platform/**/*.swift' - s.dependency 'RxSwift', '~> 4.0.0-beta.1' + s.dependency 'RxSwift', '~> 4.0.0-rc.0' end diff --git a/RxCocoa.podspec b/RxCocoa.podspec index 22f037145..e42a42cee 100644 --- a/RxCocoa.podspec +++ b/RxCocoa.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxCocoa" - s.version = "4.0.0-beta.1" + s.version = "4.0.0-rc.0" s.summary = "RxSwift Cocoa extensions" s.description = <<-DESC * UI extensions @@ -27,5 +27,5 @@ Pod::Spec.new do |s| s.watchos.source_files = 'RxCocoa/iOS/**/*.swift' s.tvos.source_files = 'RxCocoa/iOS/**/*.swift' - s.dependency 'RxSwift', '~> 4.0.0-beta.1' + s.dependency 'RxSwift', '~> 4.0.0-rc.0' end diff --git a/RxSwift.podspec b/RxSwift.podspec index 7878ba87d..594eb4872 100644 --- a/RxSwift.podspec +++ b/RxSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxSwift" - s.version = "4.0.0-beta.1" + s.version = "4.0.0-rc.0" s.summary = "RxSwift is a Swift implementation of Reactive Extensions" s.description = <<-DESC This is a Swift port of [ReactiveX.io](https://github.com/ReactiveX) diff --git a/RxTest.podspec b/RxTest.podspec index 8fb43701d..f3e25560d 100644 --- a/RxTest.podspec +++ b/RxTest.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "RxTest" - s.version = "4.0.0-beta.1" + s.version = "4.0.0-rc.0" s.summary = "RxSwift Testing extensions" s.description = <<-DESC Unit testing extensions for RxSwift. This library contains mock schedulers, observables, and observers @@ -56,7 +56,7 @@ func testMap() { s.framework = 'XCTest' - s.dependency 'RxSwift', '~> 4.0.0-beta.1' + s.dependency 'RxSwift', '~> 4.0.0-rc.0' s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' } end