packages feed

wild-bind 0.1.2.11 → 0.1.2.12

raw patch · 2 files changed

+6/−2 lines, 2 filesdep ~QuickCheckPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: QuickCheck

API changes (from Hackage documentation)

- WildBind.Binding: Action :: ActionDescription -> m a -> Action m a
+ WildBind.Binding: Action :: ActionDescription -> m a -> Action (m :: Type -> Type) a
- WildBind.Binding: [actDescription] :: Action m a -> ActionDescription
+ WildBind.Binding: [actDescription] :: Action (m :: Type -> Type) a -> ActionDescription
- WildBind.Binding: [actDo] :: Action m a -> m a
+ WildBind.Binding: [actDo] :: Action (m :: Type -> Type) a -> m a
- WildBind.Binding: as :: (Action m a -> b) -> ActionDescription -> Action m a -> b
+ WildBind.Binding: as :: forall (m :: Type -> Type) a b. (Action m a -> b) -> ActionDescription -> Action m a -> b
- WildBind.Binding: data Action m a
+ WildBind.Binding: data Action (m :: Type -> Type) a
- WildBind.Binding: revise :: (forall a. bs -> fs -> i -> Action IO a -> Maybe (Action IO a)) -> Binding' bs fs i -> Binding' bs fs i
+ WildBind.Binding: revise :: (forall a. () => bs -> fs -> i -> Action IO a -> Maybe (Action IO a)) -> Binding' bs fs i -> Binding' bs fs i
- WildBind.Binding: revise' :: (forall a. bs -> fs -> i -> Action (StateT bs IO) a -> Maybe (Action (StateT bs IO) a)) -> Binding' bs fs i -> Binding' bs fs i
+ WildBind.Binding: revise' :: (forall a. () => bs -> fs -> i -> Action (StateT bs IO) a -> Maybe (Action (StateT bs IO) a)) -> Binding' bs fs i -> Binding' bs fs i
- WildBind.Seq: reviseSeq :: (forall a. [i] -> fs -> i -> Action IO a -> Maybe (Action IO a)) -> SeqBinding fs i -> SeqBinding fs i
+ WildBind.Seq: reviseSeq :: (forall a. () => [i] -> fs -> i -> Action IO a -> Maybe (Action IO a)) -> SeqBinding fs i -> SeqBinding fs i

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for wild-bind +## 0.1.2.12  -- 2025-06-19++* Confirm test with `QuickCheck-2.16`.+ ## 0.1.2.11  -- 2025-03-19  * Confirm test with `ghc-9.12.1`.
wild-bind.cabal view
@@ -1,5 +1,5 @@ name:                   wild-bind-version:                0.1.2.11+version:                0.1.2.12 author:                 Toshio Ito <debug.ito@gmail.com> maintainer:             Toshio Ito <debug.ito@gmail.com> license:                BSD3@@ -57,7 +57,7 @@                         wild-bind,                         transformers ^>=0.5.6 || ^>=0.6.1,                         hspec ^>=2.11.12,-                        QuickCheck ^>=2.15.0,+                        QuickCheck ^>=2.15.0 || ^>=2.16.0,                         stm ^>=2.5.0,                         microlens ^>=0.4.14