commutative-semigroups 0.1.0.1 → 0.1.0.2
raw patch · 2 files changed
+7/−3 lines, 2 filesdep ~basedep ~containersnew-uploaderPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base, containers
API changes (from Hackage documentation)
- Numeric.Product.Commutative: instance Numeric.Product.Commutative.CommutativeProduct GHC.Integer.Type.Integer
- Numeric.Product.Commutative: instance Numeric.Product.Commutative.CommutativeProduct GHC.Natural.Natural
+ Numeric.Product.Commutative: instance Numeric.Product.Commutative.CommutativeProduct GHC.Num.Integer.Integer
+ Numeric.Product.Commutative: instance Numeric.Product.Commutative.CommutativeProduct GHC.Num.Natural.Natural
Files
- ChangeLog.md +4/−0
- commutative-semigroups.cabal +3/−3
ChangeLog.md view
@@ -1,5 +1,9 @@ # Revision history for commutative-semigroups +## 0.1.0.2 -- 2023-12-22++- Support GHC 9.8.1+ ## 0.1.0.1 -- 2023-04-17 - Loosen version bounds
commutative-semigroups.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: commutative-semigroups-version: 0.1.0.1+version: 0.1.0.2 synopsis: Commutative semigroups description: A commutative semigroup is a semigroup where the order of arguments to mappend does not matter.@@ -24,7 +24,7 @@ exposed-modules: Data.Semigroup.Commutative Numeric.Product.Commutative -- other-modules:- build-depends: base >= 4.6 && < 4.19,- containers >= 0.4 && < 0.7+ build-depends: base >= 4.6 && < 4.20,+ containers >= 0.4 && < 0.8 hs-source-dirs: src default-language: Haskell2010