Skip to content

Commit 4dfa99f

Browse files
Merge branch 'master' into advance-by-timeinterval
2 parents 2e4420b + d861efd commit 4dfa99f

File tree

8 files changed

+91
-85
lines changed

8 files changed

+91
-85
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
url = https://github.com/Quick/Quick.git
77
[submodule "Carthage/Checkouts/xcconfigs"]
88
path = Carthage/Checkouts/xcconfigs
9-
url = https://github.com/jspahrsummers/xcconfigs.git
9+
url = https://github.com/xcconfigs/xcconfigs.git

CHANGELOG.md

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

34
1. `TestScheduler` can `advance` by `TimeInterval`. (#828)
45

5-
1. Fixed issue with `SignalProducer.Type.interval()` making Swift 5.3 a requirement. (#823 kudos to @mluisbrown)
6+
1. Fixed spelling error in `Token` class documentation.
67

7-
*Please add new entries at the top.*
8+
# 6.6.1
9+
1. Updated Carthage xcconfig dependency to 1.1 for proper building arm64 macOS variants. (#826, kudos to @MikeChugunov)
10+
11+
1. Fixed issue with `SignalProducer.Type.interval()` making Swift 5.3 a requirement. (#823 kudos to @mluisbrown)
812

913
# 6.6.0
1014

Cartfile.private

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
github "jspahrsummers/xcconfigs" == 0.12
1+
github "xcconfigs/xcconfigs" ~> 1.1
22
github "Quick/Quick" ~> 3.0.0
33
github "Quick/Nimble" ~> 9.0.0

Cartfile.resolved

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
github "Quick/Nimble" "v9.0.0"
22
github "Quick/Quick" "v3.0.0"
3-
github "jspahrsummers/xcconfigs" "0.12"
3+
github "xcconfigs/xcconfigs" "1.1"

ReactiveSwift.podspec

Lines changed: 1 addition & 1 deletion
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.6.0"
4+
s.version = "6.6.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.

ReactiveSwift.xcodeproj/project.pbxproj

Lines changed: 79 additions & 77 deletions
Large diffs are not rendered by default.

Sources/Lifetime.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ extension Lifetime {
8888
/// A token object which completes its associated `Lifetime` when
8989
/// it deinitializes, or when `dispose()` is called.
9090
///
91-
/// It is generally used in conjuncion with `Lifetime` as a private
91+
/// It is generally used in conjunction with `Lifetime` as a private
9292
/// deinitialization trigger.
9393
///
9494
/// ```

0 commit comments

Comments
 (0)