commutative-semigroups 0.1.0.0 → 0.1.0.1
raw patch · 3 files changed
+10/−5 lines, 3 filesdep ~basenew-uploaderPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- ChangeLog.md +5/−0
- ReadMe.md +1/−1
- commutative-semigroups.cabal +4/−4
ChangeLog.md view
@@ -1,5 +1,10 @@ # Revision history for commutative-semigroups +## 0.1.0.1 -- 2023-04-17++- Loosen version bounds+- Support GHC 9.6.1+ ## 0.1.0.0 -- 2022-06-12 - `Commutative (Product a)` now requires `CommutativeProduct a`.
ReadMe.md view
@@ -1,6 +1,6 @@ # Commutative Semigroup -[](https://haskell.org) [](https://hackage.haskell.org/package/commutative-semigroups) [](https://matrix.hackage.haskell.org/#/package/commutative-semigroups) [](https://github.com/reflex-frp/commutative-semigroups/LICENSE)+[](https://haskell.org) [](https://hackage.haskell.org/package/commutative-semigroups) [](https://github.com/reflex-frp/commutative-semigroups/LICENSE) A commutative semigroup is a semigroup where the order of arguments to mappend does not matter.
commutative-semigroups.cabal view
@@ -1,14 +1,14 @@ cabal-version: 2.4 name: commutative-semigroups-version: 0.1.0.0+version: 0.1.0.1 synopsis: Commutative semigroups description: A commutative semigroup is a semigroup where the order of arguments to mappend does not matter. license: BSD-3-Clause license-file: LICENSE author: Nathan "Taneb" van Doorn-maintainer: mainainer@obsidian.systems-copyright: Copyright (C) 2013 Nathan van Doorn, 2021 Obsidian Systems LLC+maintainer: maintainer@obsidian.systems+copyright: Copyright (C) 2013 Nathan van Doorn, 2021–2022 Obsidian Systems LLC category: Algebra, Data, Math build-type: Simple bug-reports: https://github.com/ObsidianSystems/commutative-semigroups/issues@@ -24,7 +24,7 @@ exposed-modules: Data.Semigroup.Commutative Numeric.Product.Commutative -- other-modules:- build-depends: base >= 4.6 && < 4.17,+ build-depends: base >= 4.6 && < 4.19, containers >= 0.4 && < 0.7 hs-source-dirs: src default-language: Haskell2010