Skip to content

Releases: anoma/juvix-mtl

v0.2.1

29 Jan 12:17
Compare
Choose a tag to compare

v0.2.0

22 Jan 16:46
6b41d21
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.1.2...v0.2.0

v0.1.1

17 Jan 15:59
Compare
Choose a tag to compare

Update stdlib to v0.10.0

v0.1.0

17 Jan 11:25
Compare
Choose a tag to compare

Changes in this release:

  1. MonadReader renamed to Reader.
  2. MonadState renamed to State.
  3. MonadError renamed to Except.
  4. MonadTrans renamed to MonadTransformer.
  5. runIdentity renamed to run.
  6. The folder structure has changed.
  7. Added MonadTransformer instance for State.

v0.0.1

08 Jan 14:29
Compare
Choose a tag to compare

This release adds:

  1. Traits for some common monadic interfaces: MonadState, MonadError and MonadReader.
  2. Concrete monad transformer implementations of the above traits: StateT, ExceptT, ReaderT.
  3. A MonadTrans class for lifting actions up the transformer stack.