Skip to content

Commit

Permalink
Merge pull request #436 from Kevin-Lee/prepare-to-release
Browse files Browse the repository at this point in the history
effectie v2.0.0-beta2
  • Loading branch information
kevin-lee authored Sep 19, 2022
2 parents 6a25cf0 + 095ea50 commit dbf2979
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
42 changes: 42 additions & 0 deletions changelogs/2.0.0-beta2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
## [2.0.0-beta2](https://github.com/Kevin-Lee/effectie/issues?q=is%3Aissue+is%3Aclosed+milestone%3Av2-m1+created%3A%3E2022-03-28+closed%3A%3C2022-09-20) - 2022-09-20

## Renaming
Rename modules and packages (#430)

### Modules
* `effectie-cats` => `effectie-syntax`
* `effectie-cats-effect` => `effectie-cats-effect2`
* `effectie-cats-effect3` remains the same
* `effectie-monix` => `effectie-monix3`

### Packages
* Cats Effect 2: `effectie.cats` => `effectie.ce2`
* Cats Effect 3: `effectie.cats` => `effectie.ce3`
* Monix 3: `effectie.monix` => `effectie.monix3`
***

## Project Structure Change
* Use `effectie-cats-effect` common code for `effectie-monix` (#425)
***

## Added
* Add `FxCtor.pureOrError(a)` and `Fx.pureOrError(a)` (#424)
```scala
FxCtor[IO].pureOrError(1)
// IO[Int] = Pure(1)

FxCtor[IO].pureOrError[Int]((throw new RuntimeException("ERROR")): Int)
// IO[Int] = RaiseError(java.lang.RuntimeException("ERROR"))
```

***

## Clean up
* Clean up syntax (#421)
* syntax should have cats (#432)
* (`effectie.cats.syntax` and `effectie.syntax`) => `effectie.syntax`

***

## Documentation
* Upgrade docs site to Docusaurus `2.0.0-rc.1` (#415)
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-beta2"

0 comments on commit dbf2979

Please sign in to comment.