Skip to content

Commit 23ab396

Browse files
committed
Bump version to 6.2.0
1 parent bdecd86 commit 23ab396

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
# SwiftObserver Changelog
22

3+
## v6.2
4+
5+
New functions on `Promise<Value>` that return a mapped new `Promise<MappedValue>`:
6+
* `map(...)`
7+
* `unwrap(default)`
8+
* `new()`
9+
310
## v6.1
411

512
All that's new is also compatible with message authors and ad-hoc transform chains:
613
* Promises:
714
* `Promise<Value>` is a `Messenger<Value>` with some conveniences for async returns
815
* Promise composition functions `promise`, `then` and `and`
9-
* Promise value mapping functions `map(...)`, `unwrap(default)` and `new()`
1016
* Free Observers:
1117
* Class for adhoc observers `FreeObserver`
1218
* Global function `observe(...)`, and `observed(...)` on observables, both use `FreeObserver.shared`

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ let package = Package(
7070
name: "MyApp",
7171
dependencies: [
7272
.package(url: "https://github.com/flowtoolz/SwiftObserver.git",
73-
.upToNextMajor(from: "6.1.0"))
73+
.upToNextMajor(from: "6.2.0"))
7474
],
7575
targets: [
7676
.target(name: "MyAppTarget",
@@ -85,7 +85,7 @@ With [**Cocoapods**](https://cocoapods.org), adjust your [Podfile](https://guide
8585

8686
```ruby
8787
target "MyAppTarget" do
88-
pod "SwiftObserver", "~> 6.1"
88+
pod "SwiftObserver", "~> 6.2"
8989
end
9090
```
9191

SwiftObserver.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# meta infos
44
s.name = "SwiftObserver"
5-
s.version = "6.1.0"
5+
s.version = "6.2.0"
66
s.summary = "Reactive Swift. Minimalist, Readable, Consistent, Unintrusive, Powerful, Safe."
77
s.description = "SwiftObserver is a lightweight framework for reactive Swift. It's a bit unconventional and designed to be readable, easy, flexible, non-intrusive, simple and safe."
88
s.homepage = "http://flowtoolz.com"

0 commit comments

Comments
 (0)