Skip to content

Commit 565cc5f

Browse files
committed
6.6.0
1 parent 08dcda2 commit 565cc5f

File tree

76 files changed

+92
-92
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+92
-92
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -146,14 +146,14 @@ Open Rx.xcworkspace, choose `RxExample` and hit run. This method will build ever
146146
use_frameworks!
147147

148148
target 'YOUR_TARGET_NAME' do
149-
pod 'RxSwift', '6.5.0'
150-
pod 'RxCocoa', '6.5.0'
149+
pod 'RxSwift', '6.6.0'
150+
pod 'RxCocoa', '6.6.0'
151151
end
152152

153153
# RxTest and RxBlocking make the most sense in the context of unit/integration tests
154154
target 'YOUR_TESTING_TARGET' do
155-
pod 'RxBlocking', '6.5.0'
156-
pod 'RxTest', '6.5.0'
155+
pod 'RxBlocking', '6.6.0'
156+
pod 'RxTest', '6.6.0'
157157
end
158158
```
159159

@@ -178,7 +178,7 @@ Simply drag the needed framework binaries to your **Frameworks, Libraries, and E
178178
Add this to `Cartfile`
179179

180180
```
181-
github "ReactiveX/RxSwift" "6.5.0"
181+
github "ReactiveX/RxSwift" "6.6.0"
182182
```
183183

184184
```bash
@@ -211,7 +211,7 @@ import PackageDescription
211211
let package = Package(
212212
name: "RxTestProject",
213213
dependencies: [
214-
.package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.5.0"))
214+
.package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.6.0"))
215215
],
216216
targets: [
217217
.target(name: "RxTestProject", dependencies: ["RxSwift", "RxCocoa"])

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 = "6.5.0"
3+
s.version = "6.6.0"
44
s.summary = "RxSwift Blocking operators"
55
s.description = <<-DESC
66
Set of blocking operators for RxSwift. These operators are mostly intended for unit/integration tests
@@ -25,7 +25,7 @@ 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', '6.5.0'
28+
s.dependency 'RxSwift', '6.6.0'
2929
s.swift_version = '5.1'
3030

3131
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }

RxCocoa.podspec

Lines changed: 3 additions & 3 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 = "6.5.0"
3+
s.version = "6.6.0"
44
s.summary = "RxSwift Cocoa extensions"
55
s.description = <<-DESC
66
* UI extensions
@@ -23,8 +23,8 @@ Pod::Spec.new do |s|
2323
s.source_files = 'RxCocoa/**/*.{swift,h,m}', 'Platform/**/*.swift'
2424
s.exclude_files = 'RxCocoa/Platform/**/*.swift', 'Platform/AtomicInt.swift'
2525

26-
s.dependency 'RxSwift', '6.5.0'
27-
s.dependency 'RxRelay', '6.5.0'
26+
s.dependency 'RxSwift', '6.6.0'
27+
s.dependency 'RxRelay', '6.6.0'
2828

2929
s.swift_version = '5.1'
3030

RxRelay.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 = "RxRelay"
3-
s.version = "6.5.0"
3+
s.version = "6.6.0"
44
s.summary = "Relays for RxSwift - PublishRelay, BehaviorRelay and ReplayRelay"
55
s.description = <<-DESC
66
Relays for RxSwift - PublishRelay, BehaviorRelay and ReplayRelay
@@ -24,7 +24,7 @@ Relays for RxSwift - PublishRelay, BehaviorRelay and ReplayRelay
2424

2525
s.source_files = 'RxRelay/**/*.{swift,h,m}'
2626

27-
s.dependency 'RxSwift', '6.5.0'
27+
s.dependency 'RxSwift', '6.6.0'
2828
s.swift_version = '5.1'
2929

3030
s.pod_target_xcconfig = { 'APPLICATION_EXTENSION_API_ONLY' => 'YES' }

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

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 = "6.5.0"
3+
s.version = "6.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', '6.5.0'
59+
s.dependency 'RxSwift', '6.6.0'
6060
s.swift_version = '5.1'
6161

6262
s.pod_target_xcconfig = {

docs/Classes/AsyncSubject.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
RxSwift 6.5.0 Docs
24+
RxSwift 6.6.0 Docs
2525
</a>
2626
(96% documented)
2727
</p>

docs/Classes/BehaviorSubject.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
RxSwift 6.5.0 Docs
24+
RxSwift 6.6.0 Docs
2525
</a>
2626
(96% documented)
2727
</p>

docs/Classes/BooleanDisposable.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
RxSwift 6.5.0 Docs
24+
RxSwift 6.6.0 Docs
2525
</a>
2626
(96% documented)
2727
</p>

docs/Classes/CompositeDisposable.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<header class="header">
2222
<p class="header-col header-col--primary">
2323
<a class="header-link" href="../index.html">
24-
RxSwift 6.5.0 Docs
24+
RxSwift 6.6.0 Docs
2525
</a>
2626
(96% documented)
2727
</p>

0 commit comments

Comments
 (0)