Skip to content

Commit c8742ed

Browse files
committed
6.0.0
1 parent e3f3401 commit c8742ed

6 files changed

+16
-16
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.0.0-rc.2'
150-
pod 'RxCocoa', '6.0.0-rc.2'
149+
pod 'RxSwift', '6.0.0'
150+
pod 'RxCocoa', '6.0.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.0.0-rc.2'
156-
pod 'RxTest', '6.0.0-rc.2'
155+
pod 'RxBlocking', '6.0.0'
156+
pod 'RxTest', '6.0.0'
157157
end
158158
```
159159

@@ -175,7 +175,7 @@ Simply drag the needed framework binaries to your **Frameworks, Libraries, and E
175175
Add this to `Cartfile`
176176

177177
```
178-
github "ReactiveX/RxSwift" "6.0.0-rc.2"
178+
github "ReactiveX/RxSwift" "6.0.0"
179179
```
180180

181181
```bash
@@ -208,7 +208,7 @@ import PackageDescription
208208
let package = Package(
209209
name: "RxTestProject",
210210
dependencies: [
211-
.package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.0.0-rc.2"))
211+
.package(url: "https://github.com/ReactiveX/RxSwift.git", .exact("6.0.0"))
212212
],
213213
targets: [
214214
.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.0.0-rc.2"
3+
s.version = "6.0.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,6 +25,6 @@ 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.0.0-rc.2'
28+
s.dependency 'RxSwift', '6.0.0'
2929
s.swift_version = '5.1'
3030
end

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.0.0-rc.2"
3+
s.version = "6.0.0"
44
s.summary = "RxSwift Cocoa extensions"
55
s.description = <<-DESC
66
* UI extensions
@@ -22,8 +22,8 @@ Pod::Spec.new do |s|
2222
s.source_files = 'RxCocoa/**/*.{swift,h,m}', 'Platform/**/*.swift'
2323
s.exclude_files = 'RxCocoa/Platform/**/*.swift', 'Platform/AtomicInt.swift'
2424

25-
s.dependency 'RxSwift', '6.0.0-rc.2'
26-
s.dependency 'RxRelay', '6.0.0-rc.2'
25+
s.dependency 'RxSwift', '6.0.0'
26+
s.dependency 'RxRelay', '6.0.0'
2727

2828
s.swift_version = '5.1'
2929
end

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

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

27-
s.dependency 'RxSwift', '6.0.0-rc.2'
27+
s.dependency 'RxSwift', '6.0.0'
2828
s.swift_version = '5.1'
2929
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 = "6.0.0-rc.2"
3+
s.version = "6.0.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.0.0-rc.2"
3+
s.version = "6.0.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.0.0-rc.2'
59+
s.dependency 'RxSwift', '6.0.0'
6060
s.swift_version = '5.1'
6161

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

0 commit comments

Comments
 (0)