packages feed

capability 0.5.0.0 → 0.5.0.1

raw patch · 5 files changed

+10/−2 lines, 5 filesdep ~constraintsdep ~dlistdep ~exceptionsPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: constraints, dlist, exceptions, generic-lens, lens, monad-control, mtl, mutable-containers, primitive, reflection, safe-exceptions, streaming, transformers, unliftio, unliftio-core

API changes (from Hackage documentation)

Files

ChangeLog.md view
@@ -1,5 +1,10 @@ # Revision history for capability +## 0.5.0.1 -- 2022-03-21++* Fix compatibility with GHC 9.2.+  See [Ghc 9.2.x migration guide](https://gitlab.haskell.org/ghc/ghc/-/wikis/migration/9.2#undecidableinstances-no-longer-implies-flexiblecontexts-in-instance-declarations).+ ## 0.5.0.0 -- 2021-07-21  * Fix compatibility with GHC 9.0.
capability.cabal view
@@ -1,5 +1,5 @@ name: capability-version: 0.5.0.0+version: 0.5.0.1 homepage: https://github.com/tweag/capability license: BSD3 license-file: LICENSE.md@@ -64,7 +64,7 @@     , dlist >= 0.8 && < 1.1     , exceptions >= 0.6 && < 0.11     , generic-lens >= 2.0 && < 2.3-    , lens >= 4.16 && < 5.1+    , lens >= 4.16 && < 5.2     , monad-control >= 1.0 && < 1.1     , mtl >= 2.0 && < 3.0     , mutable-containers >= 0.3 && < 0.4
src/Capability/Error.hs view
@@ -26,6 +26,7 @@ {-# LANGUAGE AllowAmbiguousTypes #-} {-# LANGUAGE ConstraintKinds #-} {-# LANGUAGE DerivingVia #-}+{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE FunctionalDependencies #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-}
src/Capability/State/Internal/Strategies.hs view
@@ -1,4 +1,5 @@ {-# LANGUAGE DerivingVia #-}+{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE InstanceSigs #-}
src/Capability/Writer.hs view
@@ -20,6 +20,7 @@ {-# LANGUAGE ConstraintKinds #-} {-# LANGUAGE DataKinds #-} {-# LANGUAGE DerivingVia #-}+{-# LANGUAGE FlexibleContexts #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE FunctionalDependencies #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-}