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
4
4
5
5
## [ Unreleased]
6
6
7
+ ## [ v9.1.0] ( https://github.com/purescript-contrib/purescript-parsing/releases/tag/v9.1.0 ) - 2022-06-12
8
+
7
9
Breaking changes:
8
10
9
11
New features:
@@ -12,6 +14,8 @@ New features:
12
14
13
15
Bugfixes:
14
16
17
+ - Bugfix in ` intDecimal ` .
18
+
15
19
Other improvements:
16
20
17
21
## [ 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 1
1
-- | 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.
2
16
module Parsing.String.Basic
3
17
( digit
4
18
, hexDigit
You can’t perform that action at this time.
0 commit comments