From 3f4351d04115fd8797802d9b2d17b812cd761602 Mon Sep 17 00:00:00 2001 From: Anders Ha Date: Mon, 25 May 2020 18:05:30 +0100 Subject: [PATCH] 6.3.0 --- CHANGELOG.md | 1 + ReactiveSwift.podspec | 2 +- Sources/Info.plist | 2 +- Sources/SignalProducer.swift | 6 ++++-- Tests/ReactiveSwiftTests/Info.plist | 2 +- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77bec1c4c..167435600 100644 --- a/CHANGELOG.md +++ b/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 { diff --git a/ReactiveSwift.podspec b/ReactiveSwift.podspec index 2099babd6..9be01843c 100644 --- a/ReactiveSwift.podspec +++ b/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. diff --git a/Sources/Info.plist b/Sources/Info.plist index aa7567867..8c0dd115c 100644 --- a/Sources/Info.plist +++ b/Sources/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 6.2.1 + 6.3.0 CFBundleSignature ???? CFBundleVersion diff --git a/Sources/SignalProducer.swift b/Sources/SignalProducer.swift index 01bad0048..36efdaa59 100644 --- a/Sources/SignalProducer.swift +++ b/Sources/SignalProducer.swift @@ -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. @@ -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. @@ -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. diff --git a/Tests/ReactiveSwiftTests/Info.plist b/Tests/ReactiveSwiftTests/Info.plist index 899f61464..22c7140ad 100644 --- a/Tests/ReactiveSwiftTests/Info.plist +++ b/Tests/ReactiveSwiftTests/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 6.2.1 + 6.3.0 CFBundleSignature ???? CFBundleVersion