Releases: thomashoneyman/purescript-halogen-store
Releases · thomashoneyman/purescript-halogen-store
v0.5.4
v0.5.3
- Patch release to trigger publication via the registry
v0.5.2
- Updates internal development dependencies
v0.5.1
- Bugfix:
useSelectorhook was not reading from the store on initialization (@xvaldetaro in #19)
v0.5.0
Breaking changes:
- Update for PureScript 0.15 (#16 by @thomashoneyman)
This has no changes to library internals and is solely a breaking change due to dependency upgrades.
v0.4.1
v0.4.0
- Added new instances for
StoreT:MonadReader,MonadTell,MonadWriter,MonadState,MonadCont,MonadRec,MonadTrans, andDistributive(#14 by @jhbertra) - (Breaking): Modified
MonadAskinstance forStoreTto delegate to the base monadminstead of the wrappedReaderT (HalogenStore a s)(#14 by @jhbertra) - Added
MonadStoreinstances for other monad transformers:ContT,IdentityT,MaybeT,RWST,ReaderT,StateT,WriterT(#14 by @jhbertra)
v0.3.0
- Modified
StoreTinstances forMonadAskandMonadStore(@thomashoneyman, #10) - Added
mapStoreT(@thomashoneyman, #11)
v0.2.1
- Added instances for
MonadThrowandMonadErrortoStoreT(#8 by @running-grass)
v0.2.0
- Added a
useSelectorHook that can be used with Halogen Hooks (#3 by @katsujukou) - Formatted the project with
purs-tidyand requirespurs-tidyfor future pull requests (@thomashoneyman)