strict-tuple 0.1.5 → 0.1.5.1
raw patch · 2 files changed
+13/−24 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +6/−20
- strict-tuple.cabal +7/−4
CHANGELOG.md view
@@ -1,36 +1,22 @@-# Changelog--All notable changes to this project will be documented in this file.--The format is based on [Keep a Changelog](http://keepachangelog.com/)-and this project adheres to the [Haskell Package Versioning Policy](https://pvp.haskell.org/).+## [0.1.5.1] - 2022-08-14+- Support GHC 9.4.1 ## [0.1.5] - 2022-02-01-### Added-- `Eq1` and `Eq2` instances--### Changed+- Added `Eq1` and `Eq2` instances - Support `hashable-1.4` ## [0.1.4] - 2020-11-11-### Changed - Fixed `NFData` instances ## [0.1.3] - 2019-10-20-### Added-- `Applicative`, `Biapplicative`, `Bifoldable`, `Bifunctor`, `Bitraversable`, `Foldable`, `Functor`, `Monad`, and `Traversable` instances-- `sfst`, `ssnd`, `scurry`, `suncurry`, `sswap`+- Added `Applicative`, `Biapplicative`, `Bifoldable`, `Bifunctor`, `Bitraversable`, `Foldable`, `Functor`, `Monad`, and `Traversable` instances+- Added `sfst`, `ssnd`, `scurry`, `suncurry`, `sswap` ## [0.1.2] - 2019-01-04-### Added-- `Hashable`, `Hashable1`, `Hashable2`, and `NFData` instances+- Added `Hashable`, `Hashable1`, `Hashable2`, and `NFData` instances ## [0.1.1] - 2018-11-07--### Added - Derive missing instances (oops) ## [0.1.0] - 2018-11-07--### Added - Initial release.
strict-tuple.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.2 name: strict-tuple-version: 0.1.5+version: 0.1.5.1 category: Data description: Strict tuples. synopsis: Strict tuples@@ -13,7 +13,7 @@ license: BSD-3-Clause license-file: LICENSE build-type: Simple-tested-with: GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.1+tested-with: GHC == 9.0.2, GHC == 9.2.4, GHC == 9.4.1 extra-source-files: CHANGELOG.md@@ -38,14 +38,17 @@ ghc-options: -Wno-missing-safe-haskell-mode -Wno-prepositive-qualified-module+ if impl(ghc >= 9.2)+ ghc-options:+ -Wno-missing-kind-signatures library import: component build-depends:- base ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16,+ base ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17, bifunctors ^>= 5.5, deepseq ^>= 1.4.3.0,- hashable ^>= 1.2.5.0 || ^>= 1.3 || ^>= 1.4+ hashable ^>= 1.2.5.0 || ^>= 1.3 || ^>= 1.4, exposed-modules: Data.Tuple.Strict hs-source-dirs: src other-modules: