packages feed

gigaparsec 0.2.2.2 → 0.2.2.3

raw patch · 3 files changed

+5/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,8 @@ # Revision history for gigaparsec +## 0.2.2.3 -- 2024-01-29+* Fixed bug where `markAsToken` doesn't apply at the correct offsets+ ## 0.2.2.2 -- 2024-01-29 * Optimised the error system using `DefuncError` and `DefuncHints`. * Fixed bugs with amending and token merging.
gigaparsec.cabal view
@@ -20,7 +20,7 @@ -- PVP summary:     +-+------- breaking API changes --                  | | +----- non-breaking API additions --                  | | | +--- code changes with no API change-version:            0.2.2.2+version:            0.2.2.3  -- A short (one-line) description of the package. synopsis:
src/Text/Gigaparsec/Internal/Errors/DefuncError.hs view
@@ -142,7 +142,7 @@   where !eBy = entrenchedBy err  markAsLexical :: Word -> DefuncError -> DefuncError-markAsLexical !off (DefuncError IsVanilla flags pOff uOff errTy) | off == pOff =+markAsLexical !off (DefuncError IsVanilla flags pOff uOff errTy) | off < pOff =   DefuncError IsVanilla (setBit flags lexicalBit) pOff uOff errTy markAsLexical _ err = err