regex-tdfa 1.3.2.5 → 1.3.2.6
raw patch · 3 files changed
+12/−4 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +7/−0
- lib/Data/IntSet/EnumSet2.hs +1/−1
- regex-tdfa.cabal +4/−3
CHANGELOG.md view
@@ -1,3 +1,10 @@+### 1.3.2.6++_2026-08-13 Andreas Abel_++- Address deprecation warning for (Data.IntSet.fold) ([#76](https://github.com/haskell-hvr/regex-tdfa/issues/76))+- Tested with GHC 8.0 - 9.14.1+ ### 1.3.2.5 _2025-09-29 Andreas Abel_
lib/Data/IntSet/EnumSet2.hs view
@@ -81,7 +81,7 @@ where f' b = fromEnum (f (toEnum b)) fold :: (Enum e) => (e -> b -> b) -> b -> EnumSet e -> b-fold f a (EnumSet s) = S.fold f' a s+fold f a (EnumSet s) = S.foldr f' a s where f' b a1 = f (toEnum b) a1 elems :: (Enum e) => EnumSet e -> [e]
regex-tdfa.cabal view
@@ -1,6 +1,6 @@ cabal-version: 2.0 name: regex-tdfa-version: 1.3.2.5+version: 1.3.2.6 build-Type: Simple license: BSD3@@ -27,7 +27,8 @@ test/cases/*.txt tested-with:- GHC == 9.12.2+ GHC == 9.14.1+ GHC == 9.12.4 GHC == 9.10.3 GHC == 9.8.4 GHC == 9.6.7@@ -48,7 +49,7 @@ source-repository this type: git location: https://github.com/haskell-hvr/regex-tdfa.git- tag: v1.3.2.5+ tag: v1.3.2.6 flag force-O2 default: False