Skip to content

Commit 61261f2

Browse files
committed
4.0.0 rc.0
1 parent a6ed6d2 commit 61261f2

File tree

5 files changed

+14
-7
lines changed

5 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ All notable changes to this project will be documented in this file.
1313
* Call `controlTextDidChange(…)` as an optional method. #1406
1414
* Fixed issue with `NSControl.rx.value` regarding multiple observers. #1399
1515

16+
## [4.0.0-rc.0](https://github.com/ReactiveX/RxSwift/releases/tag/4.0.0-rc.0)
17+
18+
* Deprecates `image(transitionType:)` in favor of `image`.
19+
* Changes return type of `ignoreElements` to `Completable`. #1436
20+
* Removes warning of sequence completion from `Binder`. #1431
21+
* Deprecates `Variable` in favor of `BehaviorRelay`.
22+
1623
## [4.0.0-beta.1](https://github.com/ReactiveX/RxSwift/releases/tag/4.0.0-beta.1)
1724

1825
* Adds `attributedText` to `UITextField`. #1249

RxBlocking.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RxBlocking"
3-
s.version = "4.0.0-beta.1"
3+
s.version = "4.0.0-rc.0"
44
s.summary = "RxSwift Blocking operatos"
55
s.description = <<-DESC
66
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
2525
s.source_files = 'RxBlocking/**/*.swift', 'Platform/**/*.swift'
2626
s.exclude_files = 'RxBlocking/Platform/**/*.swift'
2727

28-
s.dependency 'RxSwift', '~> 4.0.0-beta.1'
28+
s.dependency 'RxSwift', '~> 4.0.0-rc.0'
2929
end

RxCocoa.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RxCocoa"
3-
s.version = "4.0.0-beta.1"
3+
s.version = "4.0.0-rc.0"
44
s.summary = "RxSwift Cocoa extensions"
55
s.description = <<-DESC
66
* UI extensions
@@ -27,5 +27,5 @@ Pod::Spec.new do |s|
2727
s.watchos.source_files = 'RxCocoa/iOS/**/*.swift'
2828
s.tvos.source_files = 'RxCocoa/iOS/**/*.swift'
2929

30-
s.dependency 'RxSwift', '~> 4.0.0-beta.1'
30+
s.dependency 'RxSwift', '~> 4.0.0-rc.0'
3131
end

RxSwift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RxSwift"
3-
s.version = "4.0.0-beta.1"
3+
s.version = "4.0.0-rc.0"
44
s.summary = "RxSwift is a Swift implementation of Reactive Extensions"
55
s.description = <<-DESC
66
This is a Swift port of [ReactiveX.io](https://github.com/ReactiveX)

RxTest.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "RxTest"
3-
s.version = "4.0.0-beta.1"
3+
s.version = "4.0.0-rc.0"
44
s.summary = "RxSwift Testing extensions"
55
s.description = <<-DESC
66
Unit testing extensions for RxSwift. This library contains mock schedulers, observables, and observers
@@ -56,7 +56,7 @@ func testMap() {
5656

5757
s.framework = 'XCTest'
5858

59-
s.dependency 'RxSwift', '~> 4.0.0-beta.1'
59+
s.dependency 'RxSwift', '~> 4.0.0-rc.0'
6060

6161
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
6262
end

0 commit comments

Comments
 (0)