Skip to content

Commit 660aab4

Browse files
Bumping deployment target due to Xcode 12 warning (#818)
* Bumping deployment target due to Xcode 12 warning * Fix unavailable QueueScheduler initializer in tests. Co-authored-by: Anders Ha <[email protected]>
1 parent df0e782 commit 660aab4

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# master
22
*Please add new entries at the top.*
33

4+
# 6.5.1
45
1. Added the `interval` operator (#810, kudos to @mluisbrown)
6+
1. Bumped deployment target to iOS 9.0, per Xcode 12 warnings
7+
58
# 6.5.0
69

710
1. Add `ExpressibleByNilLiteral` constraint to `OptionalProtocol` (#805, kudos to @nkristek)

Documentation/RxCheatsheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Inspired by the [RxSwift to Combine cheatsheet](https://github.com/CombineCommun
77

88
| | RxSwift | ReactiveSwift |
99
|-----------------------|----------------------------------|--------------------------------------------|
10-
| Deployment Target | iOS 8.0+ | iOS 8.0+
10+
| Deployment Target | iOS 8.0+ | iOS 9.0+
1111
| Platforms supported | iOS, macOS, tvOS, watchOS, Linux | iOS, macOS, tvOS, watchOS, Linux
1212
| Spec | Reactive Extensions (ReactiveX) | Originally ReactiveX, with significant divergence
1313
| Framework Consumption | Third-party | Third-party

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ code and state to bridge the gap.
7373

7474
## Installation
7575

76-
ReactiveSwift supports macOS 10.9+, iOS 8.0+, watchOS 2.0+, tvOS 9.0+ and Linux.
76+
ReactiveSwift supports macOS 10.9+, iOS 9.0+, watchOS 2.0+, tvOS 9.0+ and Linux.
7777

7878
#### Carthage
7979

ReactiveSwift.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "ReactiveSwift"
33
# Version goes here and will be used to access the git tag later on, once we have a first release.
4-
s.version = "6.5.0"
4+
s.version = "6.5.1"
55
s.summary = "Streams of values over time"
66
s.description = <<-DESC
77
ReactiveSwift is a Swift framework inspired by Functional Reactive Programming. It provides APIs for composing and transforming streams of values over time.
@@ -10,7 +10,7 @@ Pod::Spec.new do |s|
1010
s.license = { :type => "MIT", :file => "LICENSE.md" }
1111
s.author = "ReactiveCocoa"
1212

13-
s.ios.deployment_target = "8.0"
13+
s.ios.deployment_target = "9.0"
1414
s.osx.deployment_target = "10.9"
1515
s.watchos.deployment_target = "2.0"
1616
s.tvos.deployment_target = "9.0"

ReactiveSwift.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,7 @@
15021502
CODE_SIGNING_REQUIRED = NO;
15031503
CURRENT_PROJECT_VERSION = 1;
15041504
ENABLE_TESTABILITY = YES;
1505-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1505+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
15061506
MACOSX_DEPLOYMENT_TARGET = 10.9;
15071507
PRODUCT_BUNDLE_IDENTIFIER = "org.reactivecocoa.$(PRODUCT_NAME:rfc1034identifier)";
15081508
PRODUCT_NAME = "$(PROJECT_NAME)";
@@ -1522,7 +1522,7 @@
15221522
BITCODE_GENERATION_MODE = bitcode;
15231523
CODE_SIGNING_REQUIRED = NO;
15241524
CURRENT_PROJECT_VERSION = 1;
1525-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1525+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
15261526
MACOSX_DEPLOYMENT_TARGET = 10.9;
15271527
PRODUCT_BUNDLE_IDENTIFIER = "org.reactivecocoa.$(PRODUCT_NAME:rfc1034identifier)";
15281528
PRODUCT_NAME = "$(PROJECT_NAME)";
@@ -1634,7 +1634,7 @@
16341634
BITCODE_GENERATION_MODE = bitcode;
16351635
CODE_SIGNING_REQUIRED = NO;
16361636
CURRENT_PROJECT_VERSION = 1;
1637-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1637+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
16381638
MACOSX_DEPLOYMENT_TARGET = 10.9;
16391639
PRODUCT_BUNDLE_IDENTIFIER = "org.reactivecocoa.$(PRODUCT_NAME:rfc1034identifier)";
16401640
PRODUCT_NAME = "$(PROJECT_NAME)";
@@ -1700,7 +1700,7 @@
17001700
BITCODE_GENERATION_MODE = bitcode;
17011701
CODE_SIGNING_REQUIRED = NO;
17021702
CURRENT_PROJECT_VERSION = 1;
1703-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
1703+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
17041704
MACOSX_DEPLOYMENT_TARGET = 10.9;
17051705
PRODUCT_BUNDLE_IDENTIFIER = "org.reactivecocoa.$(PRODUCT_NAME:rfc1034identifier)-Tests";
17061706
PRODUCT_NAME = "$(PROJECT_NAME)";

Tests/ReactiveSwiftTests/QueueScheduler+Factory.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ extension QueueScheduler {
77
let label = "reactiveswift:\(file):\(line)"
88

99
#if targetEnvironment(macCatalyst)
10-
return QueueScheduler()
10+
return QueueScheduler(name: label)
1111
#else
1212
if #available(OSX 10.10, iOS 8.0, *) {
13-
return QueueScheduler()
13+
return QueueScheduler(name: label)
1414
} else {
15-
return QueueScheduler(queue: DispatchQueue(label: label))
15+
return QueueScheduler()
1616
}
1717
#endif
1818
}

0 commit comments

Comments
 (0)