packages feed

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 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 -[![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/commutative-semigroups.svg)](https://hackage.haskell.org/package/commutative-semigroups) [![Hackage CI](https://matrix.hackage.haskell.org/api/v2/packages/commutative-semigroups/badge)](https://matrix.hackage.haskell.org/#/package/commutative-semigroups)  [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/reflex-frp/commutative-semigroups/LICENSE)+[![Haskell](https://img.shields.io/badge/language-Haskell-orange.svg)](https://haskell.org) [![Hackage](https://img.shields.io/hackage/v/commutative-semigroups.svg)](https://hackage.haskell.org/package/commutative-semigroups)  [![BSD3 License](https://img.shields.io/badge/license-BSD3-blue.svg)](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