base-orphans 0.8.8.1 → 0.8.8.2
raw patch · 3 files changed
+8/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGES.markdown +4/−0
- base-orphans.cabal +3/−3
- src/Data/Orphans.hs +1/−1
CHANGES.markdown view
@@ -1,3 +1,7 @@+## Changes in 0.8.8.2 [2023.03.07]+ - Fix GHC 9.2.1 build error that was accidentally introduced in+ `base-orphans-0.8.8`.+ ## Changes in 0.8.8.1 [2023.03.05] - Fix GHC 9.4 build error that was accidentally introduced in `base-orphans-0.8.8`.
base-orphans.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 6caacb4758a8e41ba4536518fbcfde408a7db0311a922f877847e0b3b60a60da+-- hash: 5f8726da7da713fa7b7a95dea492501a6762a25a36aebbd6bb8931e0d0324660 name: base-orphans-version: 0.8.8.1+version: 0.8.8.2 synopsis: Backwards-compatible orphan instances for base description: @base-orphans@ defines orphan instances that mimic instances available in later versions of @base@ to a wider (older) range of compilers.@@ -36,7 +36,7 @@ license-file: LICENSE build-type: Simple tested-with:- GHC == 7.0.4 , GHC == 7.2.2 , GHC == 7.4.2 , GHC == 7.6.3 , GHC == 7.8.4 , GHC == 7.10.3 , GHC == 8.0.2 , GHC == 8.2.2 , GHC == 8.4.4 , GHC == 8.6.5 , GHC == 8.8.4 , GHC == 8.10.7 , GHC == 9.0.2 , GHC == 9.2.7 , GHC == 9.4.4 , GHC == 9.6.1+ GHC == 7.0.4 , GHC == 7.2.2 , GHC == 7.4.2 , GHC == 7.6.3 , GHC == 7.8.4 , GHC == 7.10.3 , GHC == 8.0.2 , GHC == 8.2.2 , GHC == 8.4.4 , GHC == 8.6.5 , GHC == 8.8.4 , GHC == 8.10.7 , GHC == 9.0.2 , GHC == 9.2.1 , GHC == 9.2.7 , GHC == 9.4.4 , GHC == 9.6.1 extra-source-files: CHANGES.markdown README.markdown
src/Data/Orphans.hs view
@@ -94,7 +94,7 @@ # endif #endif -#if !(MIN_VERSION_base(4,16,0)) || (MIN_VERSION_base(4,17,0) && !(MIN_VERSION_base(4,18,0)))+#if !(MIN_VERSION_base(4,16,1)) || (MIN_VERSION_base(4,17,0) && !(MIN_VERSION_base(4,18,0))) import Data.Orphans.Prelude #endif