Skip to content

Commit 3f4351d

Browse files
committed
6.3.0
1 parent 9504c5f commit 3f4351d

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

CHANGELOG.md

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

4+
# 6.3.0
45
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)
56
```swift
67
class ViewModel {

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.2.1"
4+
s.version = "6.3.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.

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.2.1</string>
18+
<string>6.3.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

Sources/SignalProducer.swift

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2772,6 +2772,8 @@ extension SignalProducer where Value == Bool {
27722772
}
27732773

27742774
/// Create a producer that computes a logical AND between the latest values of `booleans`.
2775+
///
2776+
/// If no producer is given in `booleans`, the resulting producer constantly emits `true`.
27752777
///
27762778
/// - parameters:
27772779
/// - booleans: A collection of boolean producers to be combined.
@@ -2805,7 +2807,7 @@ extension SignalProducer where Value == Bool {
28052807

28062808
/// Create a producer that computes a logical OR between the latest values of `booleans`.
28072809
///
2808-
/// If no producer is given in `booleans`, the resulting producer constantly emits `true`.
2810+
/// If no producer is given in `booleans`, the resulting producer constantly emits `false`.
28092811
///
28102812
/// - parameters:
28112813
/// - booleans: A collection of boolean producers to be combined.
@@ -2817,7 +2819,7 @@ extension SignalProducer where Value == Bool {
28172819

28182820
/// Create a producer that computes a logical OR between the latest values of `booleans`.
28192821
///
2820-
/// If no producer is given in `booleans`, the resulting producer constantly emits `true`.
2822+
/// If no producer is given in `booleans`, the resulting producer constantly emits `false`.
28212823
///
28222824
/// - parameters:
28232825
/// - booleans: A collection of boolean producers to be combined.

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.2.1</string>
18+
<string>6.3.0</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)