Skip to content

Commit b1f3726

Browse files
committed
Prep for v9.1
1 parent aaec78e commit b1f3726

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Notable changes to this project are documented in this file. The format is based
44

55
## [Unreleased]
66

7+
## [v9.1.0](https://github.com/purescript-contrib/purescript-parsing/releases/tag/v9.1.0) - 2022-06-12
8+
79
Breaking changes:
810

911
New features:
@@ -12,6 +14,8 @@ New features:
1214

1315
Bugfixes:
1416

17+
- Bugfix in `intDecimal`.
18+
1519
Other improvements:
1620

1721
## [v9.0.0](https://github.com/purescript-contrib/purescript-parsing/releases/tag/v9.0.0) - 2022-04-27

src/Parsing/String/Basic.purs

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
11
-- | Basic `String` parsers derived from primitive `String` parsers.
2+
-- |
3+
-- | #### unicode dependency
4+
-- |
5+
-- | Some of the parsers in this module depend on the __unicode__ package.
6+
-- | The __unicode__ package is large; about half a megabyte unminified.
7+
-- | If code which depends on __parsing__ is “tree-shaken”
8+
-- | “dead-code-eliminated,” then
9+
-- | all of the __unicode__ package will be eliminated.
10+
-- |
11+
-- | The __unicode__-dependent parsers in this module will call functions
12+
-- | which use large lookup tables from the __unicode__ package.
13+
-- | Using any of these __unicode__-dependent parsers
14+
-- | may result in a minified, dead-code-eliminated bundle size increase
15+
-- | of over 100 kilobytes.
216
module Parsing.String.Basic
317
( digit
418
, hexDigit

0 commit comments

Comments
 (0)