Skip to content

Commit

Permalink
version bump, added missing function
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mie6 committed Feb 3, 2024
1 parent d46689d commit 7124a82
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for gigaparsec

## 0.2.4.0 -- 2024-02-03
* Added `ErrorConfig` and related types, along with `mkLexerWithErrorConfig`, to now allow
for custom lexing errors.

## 0.2.3.0 -- 2024-01-29
* Added _Verified Errors_ and _Preventative Errors_ in `Text.Gigaparsec.Errors.Patterns`.

Expand Down
2 changes: 1 addition & 1 deletion gigaparsec.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ name: gigaparsec
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.2.3.0
version: 0.2.4.0

-- A short (one-line) description of the package.
synopsis:
Expand Down
4 changes: 2 additions & 2 deletions src/Text/Gigaparsec/Token/Lexer.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-- Ideally, we should probably expose all the functionally via this one file
-- for ergonomics
module Text.Gigaparsec.Token.Lexer (
Lexer, mkLexer,
Lexer, mkLexer, mkLexerWithErrorConfig,
Lexeme, lexeme, nonlexeme, fully, space,
apply, sym, symbol, names,
-- Symbol
Expand All @@ -27,7 +27,7 @@ module Text.Gigaparsec.Token.Lexer (
) where

import Text.Gigaparsec.Internal.Token.Lexer (
Lexer, mkLexer,
Lexer, mkLexer, mkLexerWithErrorConfig,
Lexeme (rawMultiStringLiteral), lexeme, nonlexeme, fully, space,
apply, sym, symbol, names,
integer, natural,
Expand Down

0 comments on commit 7124a82

Please sign in to comment.