Skip to content

Commit b772fa0

Browse files
authored
Merge pull request #743 from ReactiveCocoa/release-6.1.0
Bump version to 6.1.0
2 parents 7763d88 + 18a4379 commit b772fa0

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# master
22
*Please add new entries at the top.*
3+
4+
# 6.1.0
5+
36
1. add possibility to use `all` and `any` operators with array of arguments (#735, kudos to @olejnjak)
47
```swift
58
let property = Property.any([boolProperty1, boolProperty2, boolProperty3])
69
```
7-
2. Fixed Result extensions ambiguity (#733, kudos to @nekrich)
810
1. Fixed Result extensions ambiguity (#733, kudos to @nekrich)
911
1. Add `<~` binding operator to `Signal.Observer` (#635, kudos to @Marcocanc)
1012

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.0.0"
4+
s.version = "6.1.0"
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.
@@ -21,5 +21,5 @@ Pod::Spec.new do |s|
2121
s.pod_target_xcconfig = {"OTHER_SWIFT_FLAGS[config=Release]" => "$(inherited) -suppress-warnings" }
2222

2323
s.cocoapods_version = ">= 1.4.0"
24-
s.swift_version = "5.0"
24+
s.swift_versions = ["5.0", "5.1"]
2525
end

Sources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>6.0.0</string>
18+
<string>6.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Tests/ReactiveSwiftTests/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>6.0.0</string>
18+
<string>6.1.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)