packages feed

strict-tuple 0.1.5.2 → 0.1.5.3

raw patch · 4 files changed

+14/−8 lines, 4 filesdep ~basedep ~deepseqPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: base, deepseq

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,3 +1,6 @@+## [0.1.5.3] - 2023-10-15+- Support GHC 9.8.1+ ## [0.1.5.2] - 2022-10-07 - Support `bifunctors-6` 
LICENSE view
@@ -1,4 +1,4 @@-Copyright 2018 Mitchell Rosen+Copyright 2018-2023 Mitchell Rosen  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 
README.md view
@@ -1,6 +1,6 @@ # strict-tuple -[![GitHub CI](https://github.com/mitchellwrosen/strict-tuple/workflows/CI/badge.svg)](https://github.com/mitchellwrosen/strict-tuple/actions)+[![GitHub CI](https://github.com/mitchellwrosen/strict-tuple/workflows/Haskell-CI/badge.svg)](https://github.com/mitchellwrosen/strict-tuple/actions) [![Hackage](https://img.shields.io/hackage/v/strict-tuple.svg)](https://hackage.haskell.org/package/strict-tuple) [![Stackage LTS](https://stackage.org/package/strict-tuple/badge/lts)](https://www.stackage.org/lts/package/strict-tuple) [![Stackage Nightly](https://stackage.org/package/strict-tuple/badge/nightly)](https://www.stackage.org/nightly/package/strict-tuple)
strict-tuple.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.2  name: strict-tuple-version: 0.1.5.2+version: 0.1.5.3 category: Data description: Strict tuples. synopsis: Strict tuples@@ -9,11 +9,11 @@ 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-2022, Mitchell Rosen+copyright: (c) 2018-2023, Mitchell Rosen license: BSD-3-Clause license-file: LICENSE build-type: Simple-tested-with: GHC == 9.0.2, GHC == 9.2.4, GHC == 9.4.1+tested-with: GHC == 9.4.7, GHC == 9.6.3, GHC == 9.8.1  extra-source-files:   CHANGELOG.md@@ -41,13 +41,16 @@   if impl(ghc >= 9.2)     ghc-options:       -Wno-missing-kind-signatures+  if impl(ghc >= 9.8)+    ghc-options:+      -Wno-missing-role-annotations  library   import: component   build-depends:-    base ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17,-    bifunctors ^>= 5.5 || ^>= 6,-    deepseq ^>= 1.4.3.0,+    base ^>= 4.11 || ^>= 4.12 || ^>= 4.13 || ^>= 4.14 || ^>= 4.15 || ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19,+    bifunctors ^>= 5.5 || ^>= 5.6,+    deepseq ^>= 1.4.3.0 || ^>= 1.5,     hashable ^>= 1.2.5.0 || ^>= 1.3 || ^>= 1.4,   exposed-modules: Data.Tuple.Strict   hs-source-dirs: src