packages feed

strict-tuple 0.1.5.3 → 0.1.5.4

raw patch · 3 files changed

+35/−22 lines, 3 filesdep ~basedep ~hashablePVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, hashable

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,28 +1,41 @@-## [0.1.5.3] - 2023-10-15+## [0.1.5.4] - May 15, 2024++- Support GHC 9.10.1++## [0.1.5.3] - October 15, 2023+ - Support GHC 9.8.1 -## [0.1.5.2] - 2022-10-07+## [0.1.5.2] - October 7, 2022+ - Support `bifunctors-6` -## [0.1.5.1] - 2022-08-14+## [0.1.5.1] - August 14, 2022+ - Support GHC 9.4.1 -## [0.1.5] - 2022-02-01+## [0.1.5] - February 1, 2022+ - Added `Eq1` and `Eq2` instances - Support `hashable-1.4` -## [0.1.4] - 2020-11-11+## [0.1.4] - November 11, 2020+ - Fixed `NFData` instances -## [0.1.3] - 2019-10-20+## [0.1.3] - October 20, 2019+ - Added `Applicative`, `Biapplicative`, `Bifoldable`, `Bifunctor`, `Bitraversable`, `Foldable`, `Functor`, `Monad`, and `Traversable` instances - Added `sfst`, `ssnd`, `scurry`, `suncurry`, `sswap` -## [0.1.2] - 2019-01-04+## [0.1.2] - January 4, 2019+ - Added `Hashable`, `Hashable1`, `Hashable2`, and `NFData` instances -## [0.1.1] - 2018-11-07+## [0.1.1] - November 7, 2018+ - Derive missing instances (oops) -## [0.1.0] - 2018-11-07+## [0.1.0] - November 7, 2018+ - Initial release.
LICENSE view
@@ -1,4 +1,4 @@-Copyright 2018-2023 Mitchell Rosen+Copyright 2018-2024 Mitchell Dalvi Rosen  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 
strict-tuple.cabal view
@@ -1,21 +1,21 @@ cabal-version: 2.2 -name: strict-tuple-version: 0.1.5.3+author: Mitchell Dalvi Rosen+bug-reports: https://github.com/mitchellwrosen/strict-tuple/issues+build-type: Simple category: Data+copyright: (c) 2018-2024, Mitchell Dalvi Rosen description: Strict tuples.-synopsis: Strict tuples-author: Mitchell Rosen-maintainer: Mitchell Rosen <mitchellwrosen@gmail.com> homepage: https://github.com/mitchellwrosen/strict-tuple-bug-reports: https://github.com/mitchellwrosen/strict-tuple/issues-copyright: (c) 2018-2023, Mitchell Rosen-license: BSD-3-Clause license-file: LICENSE-build-type: Simple-tested-with: GHC == 9.4.7, GHC == 9.6.3, GHC == 9.8.1+license: BSD-3-Clause+maintainer: Mitchell Dalvi Rosen <mitchellwrosen@gmail.com>+name: strict-tuple+synopsis: Strict tuples+tested-with: GHC == 9.6.5, GHC == 9.8.2, GHC == 9.10.1+version: 0.1.5.4 -extra-source-files:+extra-doc-files:   CHANGELOG.md   README.md @@ -48,7 +48,7 @@ library   import: component   build-depends:-    base ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19,+    base ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20,     bifunctors ^>= 5.5 || ^>= 5.6,     deepseq ^>= 1.4.3.0 || ^>= 1.5,     hashable ^>= 1.2.5.0 || ^>= 1.3 || ^>= 1.4,