All Versions
18
Latest Version
Avg Release Cycle
127 days
Latest Release
1454 days ago

Changelog History
Page 2

  • v0.6.0.0 Changes

    June 01, 2015
    • Add MultiRWST

    • Add inflate functions (e.g. StateT _ -> MultiStateT _)

    • Improve lazyness

    • Move changelog from README.md to changelog.md

  • v0.5.0.0 Changes

    March 01, 2015
    • Breaking changes (!):

      Refactor some parts of the interface, see "naming scheme" in the README; The changes are:

      | old | new | | --- | --- | | withMultiFoo | withMultiFooA | | withMultiFoos | withMultiFoosA | | mAskRaw | mGetRaw | | | mPutRaw | | evalMultiStateT | runMultiStateTNil | | evalMultiStateTWithInitial | runMultiStateTA | | evalMultiReaderT | runMultiReaderTNil | | evalMultiReaderTWithInitial | runMultiReaderTA | | execMultiWriterT | runMultiWriterTW |

    • Start using hspec; Add proper cabal test-suite.

  • v0.4.0.0 Changes

    March 01, 2015
    • Refactor from Control.Monad.* to Control.Monad.Trans.*

    • Put classes (MonadMulti*) into separate modules

    • Add Strict and Lazy variants

    • Deprecate previous modules

  • v0.3.0.0 Changes

    January 01, 2015
    • Add MultiWriter

    • Fixity for (:+:)

    • support ghc-7.10

  • v0.2.0.0 Changes

    January 01, 2015
    • Start using DataKinds and TypeOperators to make the HList representation more readable. The translation roughly is:

      Null        -> '[]
      Cons a Null -> '[a]
      Cons a b    -> a ': b
      TNull       -> HNil
      TCons a b   -> a :+: b
      
    • Remove dependency on tfp package.

  • v0.1.3.2 Changes

    September 01, 2014
    • Add example

    • Clean up / Add dependencies

    • More documentation

  • v0.1.2 Changes

    September 01, 2014
    • Expose HList module

    • Add haddocks

  • v0.1.1 Changes

    June 01, 2014
    • First version published on hackage