Skip to content

Commit 1314805

Browse files
committed
Release 3.6.0
1 parent 8c874c4 commit 1314805

File tree

9 files changed

+33
-19
lines changed

9 files changed

+33
-19
lines changed

CHANGELOG.md

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,39 @@ All notable changes to this project will be documented in this file.
55

66
## Master
77

8-
* Adds `modelDeleted` to `UITableView`
9-
* Adds `itemHighlighted` to `UICollectionView`
10-
* Adds `itemUnhighlighted` to `UICollectionView`
11-
* Adds `willDisplayCell` to `UICollectionView`
12-
* Adds `didEndDisplayingCell` to `UICollectionView`
13-
* Adds `willDisplaySupplementaryView` to `UICollectionView`
14-
* Adds `didEndDisplayingSupplementaryView` to `UICollectionView`
158

16-
## [3.6.0]()
9+
## [3.6.0](https://github.com/ReactiveX/RxSwift/releases/tag/3.6.0)
1710

11+
* Adds `timeout` operator to `PrimitiveSequence` (`Single`, `Maybe`, `Observable`)
12+
* Adds `delay` operator to `SharedSequence`.
13+
* Adds `andThen` operator to `Completeable`.
14+
* Adds `concat` operator to `Completeable`.
1815
* Adds `RxPickerViewDataSourceType`
1916
* Adds `UIPickerView` extensions:
2017
* `modelSelected`
2118
* `itemTitles`
2219
* `itemAttributedTitles`
2320
* `items`
21+
* Adds `UITableView` extensions:
22+
* `modelDeleted`
23+
* Adds `UICollectionView` extensions:
24+
* `itemHighlighted`
25+
* `itemUnhighlighted`
26+
* `willDisplayCell`
27+
* `didEndDisplayingCell`
28+
* `willDisplaySupplementaryView`
29+
* `didEndDisplayingSupplementaryView`
30+
* Adds `UIScrollView` extensions:
31+
* `willBeginDecelerating`
32+
* `willBeginDragging`
33+
* `willBeginZooming`
34+
* `didEndZooming`
2435

2536
#### Anomalies
2637

38+
* Fixes deadlock anomaly in `shareReplayWhileLatest`. #1323
39+
* Removes duplicated events swallowing in `NSControl` on macOS.
40+
2741
## [3.5.0](https://github.com/ReactiveX/RxSwift/releases/tag/3.5.0)
2842

2943
* Adds `from` operator on "SharedSequence"

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 = "3.5.0"
3+
s.version = "3.6.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', '~> 3.4'
28+
s.dependency 'RxSwift', '~> 3.6'
2929
end

RxBlocking/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.5.0</string>
18+
<string>3.6.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

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 = "3.5.0"
3+
s.version = "3.6.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', '~> 3.4'
30+
s.dependency 'RxSwift', '~> 3.6'
3131
end

RxCocoa/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.5.0</string>
18+
<string>3.6.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

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 = "3.5.0"
3+
s.version = "3.6.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)

RxSwift/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.5.0</string>
18+
<string>3.6.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

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 = "3.5.0"
3+
s.version = "3.6.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', '~> 3.4'
59+
s.dependency 'RxSwift', '~> 3.6'
6060

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

RxTest/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>3.5.0</string>
18+
<string>3.6.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)