File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff 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+
79Breaking changes:
810
911New features:
@@ -12,6 +14,8 @@ New features:
1214
1315Bugfixes:
1416
17+ - Bugfix in ` intDecimal ` .
18+
1519Other improvements:
1620
1721## [ v9.0.0] ( https://github.com/purescript-contrib/purescript-parsing/releases/tag/v9.0.0 ) - 2022-04-27
Original file line number Diff line number Diff line change 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.
216module Parsing.String.Basic
317 ( digit
418 , hexDigit
You can’t perform that action at this time.
0 commit comments