choice 0.2.4.1 → 0.2.4.2
raw patch · 1 files changed
+17/−17 lines, 1 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Data.Choice: choice :: a -> a -> Choice b -> a
+ Data.Choice: choice :: forall a (b :: Symbol). a -> a -> Choice b -> a
- Data.Choice: fromBool :: Bool -> Choice a
+ Data.Choice: fromBool :: forall (a :: Symbol). Bool -> Choice a
- Data.Choice: isFalse :: Choice a -> Bool
+ Data.Choice: isFalse :: forall (a :: Symbol). Choice a -> Bool
- Data.Choice: isTrue :: Choice a -> Bool
+ Data.Choice: isTrue :: forall (a :: Symbol). Choice a -> Bool
- Data.Choice: toBool :: Choice a -> Bool
+ Data.Choice: toBool :: forall (a :: Symbol). Choice a -> Bool
Files
- choice.cabal +17/−17
choice.cabal view
@@ -1,22 +1,22 @@-name: choice-version: 0.2.4.1-synopsis: A solution to boolean blindness.-description: Please see README.md.-homepage: https://github.com/mboes/choice#readme-license: PublicDomain-author: Mathieu Boespflug-maintainer: m@tweag.io-category: Data-build-type: Simple-extra-source-files: README.md-cabal-version: >=1.10+cabal-version: 3.0+name: choice+version: 0.2.4.2+synopsis: A solution to boolean blindness.+description: Please see README.md.+homepage: https://github.com/mboes/choice#readme+license: BSD-3-Clause+author: Mathieu Boespflug+maintainer: m@boespfl.ug+category: Data+build-type: Simple+extra-source-files: README.md library- hs-source-dirs: src- exposed-modules: Data.Choice- build-depends: base >= 4.7 && < 5- default-language: Haskell2010+ hs-source-dirs: src+ exposed-modules: Data.Choice+ build-depends: base >= 4.7 && < 5+ default-language: Haskell2010 source-repository head- type: git+ type: git location: https://github.com/mboes/choice