Skip to content

Commit 83010c8

Browse files
authored
bump package target to iOS 9 and update testing packages (#802)
* bump package target to iOS 9 and update testing packages * update the changelog
1 parent bf337d7 commit 83010c8

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

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

4+
1. Bump min. deployment target to iOS 9 when using swift packages to silence Xcode 12 warnings. Update Quick & Nibmle to the latest version when using swift packages.
5+
46
1. Fix a debug assertion in `Lock.try()` that could be raised in earlier OS versions (< iOS 10.0, < macOS 10.12). (#747, #788)
57

68
Specifically, ReactiveSwift now recognizes `EDEADLK` as expected error code from `pthread_mutex_trylock` alongside `0`, `EBUSY` and `EAGAIN`.
79

10+
2.
11+
812
# 6.3.0
913
1. `Property` and `MutableProperty` can now be used as property wrapper. Note that they remain a reference type container, so it may not be appropriate to use them in types requiring value semantics. (#781)
1014
```swift

Package.resolved

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ import PackageDescription
44
let package = Package(
55
name: "ReactiveSwift",
66
platforms: [
7-
.macOS(.v10_10), .iOS(.v8), .tvOS(.v9), .watchOS(.v2)
7+
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v2)
88
],
99
products: [
1010
.library(name: "ReactiveSwift", targets: ["ReactiveSwift"]),
1111
],
1212
dependencies: [
13-
.package(url: "https://github.com/Quick/Quick.git", from: "2.2.1"),
13+
.package(url: "https://github.com/Quick/Quick.git", from: "3.0.0"),
1414
.package(url: "https://github.com/Quick/Nimble.git", from: "8.0.9"),
1515
],
1616
targets: [

0 commit comments

Comments
 (0)