packages feed

validity 0.3.0.1 → 0.3.0.2

raw patch · 2 files changed

+10/−4 lines, 2 filesdep ~base

Dependency ranges changed: base

Files

src/Data/Validity.hs view
@@ -20,7 +20,7 @@   The @Validity@ typeclass allows us to specify this invariant (and enables  testing via the @genvalidity@ libraries:- https://hackage.haskell.org/package/genvalidity):+ https://hackage.haskell.org/package/genvalidity ):   > instance Validity Prime where  >     isValid (Prime n) = isPrime n
validity.cabal view
@@ -1,7 +1,13 @@ name:                validity-version:             0.3.0.1+version:             0.3.0.2 synopsis:            Validity typeclass-description:         Please see README.md+description:        +  Note: There are companion instance packages for this library:+  .+  * <https://hackage.haskell.org/package/validity-text validity-text>+  .                                                 +  * <https://hackage.haskell.org/package/validity-containers validity-containers>+ homepage:            https://github.com/NorfairKing/validity#readme license:             MIT license-file:        LICENSE@@ -17,7 +23,7 @@   hs-source-dirs:      src   exposed-modules:     Data.Validity                      , Data.RelativeValidity-  build-depends:       base >= 4.7 && < 5+  build-depends:       base >= 4 && < 5   default-language:    Haskell2010  source-repository head