Skip to content

Commit 911e549

Browse files
committed
Updating CHANGELOG and README
1 parent 9b8b8bd commit 911e549

2 files changed

Lines changed: 9 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/).
55

66
## [Unreleased]
7+
No changes
8+
9+
## [3.3.0] - 2019-02-18
710
### Added
811
- `MergeMaps`, a `Monoid` on `Map` formed by `Map#merge`
912
- `CheckedEffect` is now a `CheckedFn1`
@@ -16,7 +19,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
1619
- test jar is now published
1720
- `Monad#join` static alias for `flatMap(id())`
1821
- `Effect#effect` static factory method taking `Fn1`
22+
- `IO#unsafePerformAsyncIO` overloads for running `IO`s asynchronously
1923
- `IO`s automatically encode parallelism in composition
24+
- `IO#exceptionally` for recovering from failure during `IO` operation
2025

2126
### Fixed
2227
- issue where certain ways to compose `Effect`s unintentionally nullified the effect
@@ -426,7 +431,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/).
426431
- `Monadic/Dyadic/TriadicFunction`, `Predicate`, `Tuple2`, `Tuple3`
427432
- `Functor`, `BiFunctor`, `ProFunctor`
428433

429-
[Unreleased]: https://github.com/palatable/lambda/compare/lambda-3.2.0...HEAD
434+
[Unreleased]: https://github.com/palatable/lambda/compare/lambda-3.3.0...HEAD
435+
[3.3.0]: https://github.com/palatable/lambda/compare/lambda-3.2.0...3.3.0
430436
[3.2.0]: https://github.com/palatable/lambda/compare/lambda-3.1.0...lambda-3.2.0
431437
[3.1.0]: https://github.com/palatable/lambda/compare/lambda-3.0.3...lambda-3.1.0
432438
[3.0.3]: https://github.com/palatable/lambda/compare/lambda-3.0.2...lambda-3.0.3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@ Add the following dependency to your:
5757
<dependency>
5858
<groupId>com.jnape.palatable</groupId>
5959
<artifactId>lambda</artifactId>
60-
<version>3.2.0</version>
60+
<version>3.3.0</version>
6161
</dependency>
6262
```
6363

6464
`build.gradle` ([Gradle](https://docs.gradle.org/current/userguide/dependency_management.html)):
6565

6666
```gradle
67-
compile group: 'com.jnape.palatable', name: 'lambda', version: '3.2.0'
67+
compile group: 'com.jnape.palatable', name: 'lambda', version: '3.3.0'
6868
```
6969

7070
<a name="examples">Examples</a>

0 commit comments

Comments
 (0)