Skip to content

Commit

Permalink
6.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andersio committed May 25, 2020
1 parent 9504c5f commit 3f4351d
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
@@ -1,6 +1,7 @@
# master
*Please add new entries at the top.*

# 6.3.0
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)
```swift
class ViewModel {
Expand Down
2 changes: 1 addition & 1 deletion ReactiveSwift.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.name = "ReactiveSwift"
# Version goes here and will be used to access the git tag later on, once we have a first release.
s.version = "6.2.1"
s.version = "6.3.0"
s.summary = "Streams of values over time"
s.description = <<-DESC
ReactiveSwift is a Swift framework inspired by Functional Reactive Programming. It provides APIs for composing and transforming streams of values over time.
Expand Down
2 changes: 1 addition & 1 deletion Sources/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>6.2.1</string>
<string>6.3.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
6 changes: 4 additions & 2 deletions Sources/SignalProducer.swift
Expand Up @@ -2772,6 +2772,8 @@ extension SignalProducer where Value == Bool {
}

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

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

/// Create a producer that computes a logical OR between the latest values of `booleans`.
///
/// If no producer is given in `booleans`, the resulting producer constantly emits `true`.
/// If no producer is given in `booleans`, the resulting producer constantly emits `false`.
///
/// - parameters:
/// - booleans: A collection of boolean producers to be combined.
Expand Down
2 changes: 1 addition & 1 deletion Tests/ReactiveSwiftTests/Info.plist
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>BNDL</string>
<key>CFBundleShortVersionString</key>
<string>6.2.1</string>
<string>6.3.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down

0 comments on commit 3f4351d

Please sign in to comment.