Skip to content

Commit 2b41d1e

Browse files
author
Hovak Davtyan
committed
-Update to RxSwift 6
1 parent cc0109a commit 2b41d1e

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

Example/Podfile.lock

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
PODS:
2-
- RxCocoa (5.1.1):
3-
- RxRelay (~> 5)
4-
- RxSwift (~> 5)
5-
- RxRelay (5.1.1):
6-
- RxSwift (~> 5)
7-
- RxSwift (5.1.1)
8-
- STDevRxExt (0.2.0):
9-
- RxCocoa (~> 5.1)
10-
- RxSwift (~> 5.1)
2+
- RxCocoa (6.1.0):
3+
- RxRelay (= 6.1.0)
4+
- RxSwift (= 6.1.0)
5+
- RxRelay (6.1.0):
6+
- RxSwift (= 6.1.0)
7+
- RxSwift (6.1.0)
8+
- STDevRxExt (1.1.0):
9+
- RxCocoa (~> 6)
10+
- RxSwift (~> 6)
1111

1212
DEPENDENCIES:
1313
- STDevRxExt (from `../`)
@@ -23,11 +23,11 @@ EXTERNAL SOURCES:
2323
:path: "../"
2424

2525
SPEC CHECKSUMS:
26-
RxCocoa: 32065309a38d29b5b0db858819b5bf9ef038b601
27-
RxRelay: d77f7d771495f43c556cbc43eebd1bb54d01e8e9
28-
RxSwift: 81470a2074fa8780320ea5fe4102807cb7118178
29-
STDevRxExt: 57d7368115b81b92e06728276504ece2c52fda2b
26+
RxCocoa: 5c51f02d562cbd94629f6c26cf0c80fe4ab8d343
27+
RxRelay: 483e1a19fad961b41f0b0c0bee506f46c1ae14fe
28+
RxSwift: a834e5c538e89eca0cae86f403f4fbf0336786ce
29+
STDevRxExt: fc33083a285fcca497728d17250436679015cdd5
3030

3131
PODFILE CHECKSUM: 83769abc0b7bdc83a928dcac34cf2b1154077760
3232

33-
COCOAPODS: 1.9.3
33+
COCOAPODS: 1.10.1

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let package = Package(
66
name: "STDevRxExt",
77
platforms: [
8-
.macOS(.v10_10), .iOS(.v8), .tvOS(.v9), .watchOS(.v3),
8+
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v3),
99
],
1010
products: [
1111
.library(
@@ -14,7 +14,7 @@ let package = Package(
1414
),
1515
],
1616
dependencies: [
17-
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "5.1.0")),
17+
.package(url: "https://github.com/ReactiveX/RxSwift.git", .upToNextMajor(from: "6.0.0")),
1818
],
1919
targets: [
2020
.target(

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ To run the [Example.playground](Example/Example.playground), clone the repo, and
1313

1414
## Requirements
1515

16-
* iOS 8.0+
16+
* iOS 9.0+
1717
* tvOS 9.0+
1818
* macOS 10.10+
1919
* watchOS 3.0+

STDevRxExt.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'STDevRxExt'
3-
s.version = '1.0.0'
3+
s.version = '1.1.0'
44
s.summary = 'STDevRxExt contains some extension functions for RxSwift and RxCoca which makes our live easy.'
55
s.swift_version = '5.0'
66

@@ -17,13 +17,13 @@ STDevRxExt contains following 3 type of extensions for RxSwift and RxCocoa:
1717
s.author = { 'Tigran Hambardzumyan' => '[email protected]' }
1818
s.source = { :git => 'https://github.com/STDevTM/STDevRxExt.git', :tag => s.version.to_s }
1919

20-
s.ios.deployment_target = '8.0'
20+
s.ios.deployment_target = '9.0'
2121
s.osx.deployment_target = '10.9'
2222
s.watchos.deployment_target = '3.0'
2323
s.tvos.deployment_target = '9.0'
2424

2525
s.source_files = 'Sources/STDevRxExt/**/*'
2626

27-
s.dependency 'RxSwift', '~> 5.1'
28-
s.dependency 'RxCocoa', '~> 5.1'
27+
s.dependency 'RxSwift', '~> 6'
28+
s.dependency 'RxCocoa', '~> 6'
2929
end

0 commit comments

Comments
 (0)