File tree Expand file tree Collapse file tree 5 files changed +19
-7
lines changed Expand file tree Collapse file tree 5 files changed +19
-7
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,18 @@ All notable changes to this project will be documented in this file.
13
13
* Call ` controlTextDidChange(…) ` as an optional method. #1406
14
14
* Fixed issue with ` NSControl.rx.value ` regarding multiple observers. #1399
15
15
16
+ ## [ 4.0.0] ( https://github.com/ReactiveX/RxSwift/releases/tag/4.0.0 )
17
+
18
+ * Adds global Hooks and implements error handling hook.
19
+ * Deprecates ` asSharedSequence ` extensions on ` ObservableType ` .
20
+ * Publicly exposes ` controlProperty ` .
21
+
22
+ #### Anomalies
23
+
24
+ * Changes ` Observable ` extensions to ` ObservableType ` extensions.
25
+ * Changes ` didUpdateFocusInContextWithAnimationCoordinator ` ` UITableView ` extension argument to ` UITableViewFocusUpdateContext ` .
26
+ * Changes access modifier of ` DelegateProxy.setForwardToDelegate ` to ` open ` .
27
+
16
28
## [ 4.0.0-rc.0] ( https://github.com/ReactiveX/RxSwift/releases/tag/4.0.0-rc.0 )
17
29
18
30
* Deprecates ` image(transitionType:) ` in favor of ` image ` .
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "RxBlocking"
3
- s . version = "4.0.0-rc.0 "
3
+ s . version = "4.0.0"
4
4
s . summary = "RxSwift Blocking operatos"
5
5
s . description = <<-DESC
6
6
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
25
25
s . source_files = 'RxBlocking/**/*.swift' , 'Platform/**/*.swift'
26
26
s . exclude_files = 'RxBlocking/Platform/**/*.swift'
27
27
28
- s . dependency 'RxSwift' , '~> 4.0.0-rc.0 '
28
+ s . dependency 'RxSwift' , '~> 4.0'
29
29
end
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "RxCocoa"
3
- s . version = "4.0.0-rc.0 "
3
+ s . version = "4.0.0"
4
4
s . summary = "RxSwift Cocoa extensions"
5
5
s . description = <<-DESC
6
6
* UI extensions
@@ -27,5 +27,5 @@ Pod::Spec.new do |s|
27
27
s . watchos . source_files = 'RxCocoa/iOS/**/*.swift'
28
28
s . tvos . source_files = 'RxCocoa/iOS/**/*.swift'
29
29
30
- s . dependency 'RxSwift' , '~> 4.0.0-rc.0 '
30
+ s . dependency 'RxSwift' , '~> 4.0'
31
31
end
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "RxSwift"
3
- s . version = "4.0.0-rc.0 "
3
+ s . version = "4.0.0"
4
4
s . summary = "RxSwift is a Swift implementation of Reactive Extensions"
5
5
s . description = <<-DESC
6
6
This is a Swift port of [ReactiveX.io](https://github.com/ReactiveX)
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
s . name = "RxTest"
3
- s . version = "4.0.0-rc.0 "
3
+ s . version = "4.0.0"
4
4
s . summary = "RxSwift Testing extensions"
5
5
s . description = <<-DESC
6
6
Unit testing extensions for RxSwift. This library contains mock schedulers, observables, and observers
@@ -56,7 +56,7 @@ func testMap() {
56
56
57
57
s . framework = 'XCTest'
58
58
59
- s . dependency 'RxSwift' , '~> 4.0.0-rc.0 '
59
+ s . dependency 'RxSwift' , '~> 4.0'
60
60
61
61
s . pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
62
62
end
You can’t perform that action at this time.
0 commit comments