packages feed

config-schema 1.2.1.0 → 1.2.2.0

raw patch · 3 files changed

+8/−1 lines, 3 filesdep ~basedep ~transformersPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, transformers

API changes (from Hackage documentation)

+ Config.Schema.Spec: (<!>) :: Alt f => f a -> f a -> f a
+ Config.Schema.Spec: class Functor f => Alt (f :: Type -> Type)
+ Config.Schema.Spec: infixl 3 <!>
+ Config.Schema.Spec: many :: (Alt f, Applicative f) => f a -> f [a]
+ Config.Schema.Spec: some :: (Alt f, Applicative f) => f a -> f [a]

Files

ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for config-schema +## 1.2.2.0++* Re-export `Alt` from `Config.Schema.Spec`+ ## 1.2.1.0  * Expose `Config.Schema.Load.Error.simplifyValueSpecMismatch`
config-schema.cabal view
@@ -1,6 +1,6 @@ cabal-version:       2.2 name:                config-schema-version:             1.2.1.0+version:             1.2.2.0 synopsis:            Schema definitions for the config-value package license:             ISC license-file:        LICENSE
src/Config/Schema/Spec.hs view
@@ -70,6 +70,9 @@   , reqSection'   , optSection' +  -- * Re-exports+  , Alt(..)+   ) where  import           Data.Bits                        (FiniteBits, isSigned, toIntegralSized, finiteBitSize)