Skip to content

Commit

Permalink
Merge pull request #493 from Kevin-Lee/prepare-to-release
Browse files Browse the repository at this point in the history
effectie v2.0.0-beta7
  • Loading branch information
kevin-lee authored Feb 25, 2023
2 parents 5b0d20a + c4315a0 commit 3e4dafa
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions changelogs/2.0.0-beta7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## [2.0.0-beta7](https://github.com/Kevin-Lee/effectie/issues?q=is%3Aissue+is%3Aclosed+milestone%3Av2-m1+closed%3A2023-02-12..2023-02-25) - 2023-02-25

### New Features
* Add `pureOfOption`, `pureOfSome`, `pureOfNone`, `pureOfRight` and `pureOfLeft` to `FxCtor` and `Fx` (#488)
* `Fx[F].pureOfOption[A](a: A): F[Option[A]]`
* `Fx[F].pureOfSome[A](a: A): F[Option[A]]`
* `Fx[F].pureOfNone[A]: F[Option[A]]`
* `Fx[F].pureOfRight[A][B](b: B): F[Either[A, B]]`
* `Fx[F].pureOfLeft[B][A](a: A): F[Either[A, B]]`

### Fix
* Fix typo in the missing `implicit` instance messages (#489)
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "2.0.0-SNAPSHOT"
ThisBuild / version := "2.0.0-beta7"

0 comments on commit 3e4dafa

Please sign in to comment.