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:
useSelector
hook 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
MonadAsk
instance forStoreT
to delegate to the base monadm
instead of the wrappedReaderT (HalogenStore a s)
(#14 by @jhbertra) - Added
MonadStore
instances for other monad transformers:ContT
,IdentityT
,MaybeT
,RWST
,ReaderT
,StateT
,WriterT
(#14 by @jhbertra)
v0.3.0
- Modified
StoreT
instances forMonadAsk
andMonadStore
(@thomashoneyman, #10) - Added
mapStoreT
(@thomashoneyman, #11)
v0.2.1
- Added instances for
MonadThrow
andMonadError
toStoreT
(#8 by @running-grass)
v0.2.0
- Added a
useSelector
Hook that can be used with Halogen Hooks (#3 by @katsujukou) - Formatted the project with
purs-tidy
and requirespurs-tidy
for future pull requests (@thomashoneyman)