acts 0.3.1.1 → 0.3.1.2
raw patch · 3 files changed
+12/−6 lines, 3 filesdep ~basedep ~finitarydep ~finite-typelits
Dependency ranges changed: base, finitary, finite-typelits
Files
- acts.cabal +5/−6
- changelog.md +5/−0
- src/Data/Act.hs +2/−0
acts.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.4 name: acts -version: 0.3.1.1 +version: 0.3.1.2 synopsis: Semigroup actions and torsors. category: Algebra, Math license: BSD-3-Clause @@ -54,7 +54,7 @@ build-depends: base - >= 4.12 && < 4.18 + >= 4.12 && < 5.0 , groups >= 0.4.0.0 && < 0.6 @@ -63,9 +63,9 @@ -DFIN build-depends: finitary - >= 1.2.0.0 && < 2.2 + >= 1.2.0.0 && < 2.3 , finite-typelits - ^>= 0.1.4.2 + >= 0.1.4.2 && < 0.2.2 default-language: Haskell2010 @@ -91,8 +91,7 @@ Data.Act build-depends: - deepseq - ^>= 1.4.4.0 + deepseq >= 1.4.4.0 && < 1.6 library acts-examples
changelog.md view
@@ -1,5 +1,10 @@ # Changelog for package `acts` +## 0.3.1.2 ( February 03, 2025 ) + +* Bump upper bounds on `base`, `deepseq`, `finitary`, and `finite-typelits` + (thanks to @viercc). + ## 0.3.1.1 ( December 3, 2022 ) * Bump upper bounds on `base`, `finitary` and `groups`.
src/Data/Act.hs view
@@ -4,11 +4,13 @@ , DeriveDataTypeable , DerivingVia , FlexibleInstances + , FlexibleContexts , GeneralizedNewtypeDeriving , MultiParamTypeClasses , ScopedTypeVariables , StandaloneDeriving , TypeFamilies + , TypeOperators , UndecidableInstances #-}