@@ -6,10 +6,27 @@ Notable changes to this project are documented in this file. The format is based
6
6
7
7
Breaking changes:
8
8
9
+ - ` anyChar ` will no longer always succeed. It will only succeed on a Basic
10
+ Multilingual Plane character. The new parser ` anyCodePoint ` will always
11
+ succeed. (#119 by @jamesdbrock )
12
+ - Moved from ` Token ` module to ` String ` module: ` digit ` , ` hexDigit ` , ` octDigit ` ,
13
+ ` upper ` , ` space ` , ` letter ` , ` alphaNum ` . (#119 by @jamesdbrock )
14
+ - Move ` updatePosString ` to the ` String ` module and don't
15
+ export it. (#119 by @jamesdbrock )
16
+ - Change the definition of ` whiteSpace ` and ` skipSpaces ` to
17
+ ` Data.CodePoint.Unicode.isSpace ` . (#119 by @jamesdbrock )
18
+
9
19
New features:
10
20
21
+ - Add primitive parsers ` anyCodePoint ` and ` satisfyCodePoint ` for parsing
22
+ ` CodePoint ` s. (#119 by @jamesdbrock )
23
+ - Add ` match ` combinator (#119 by @jamesdbrock )
24
+ - Add benchmark suite (#119 by @jamesdbrock )
25
+
11
26
Bugfixes:
12
27
28
+ - Unicode correctness (#119 by @jamesdbrock )
29
+
13
30
Other improvements:
14
31
15
32
## [ v6.0.2] ( https://github.com/purescript-contrib/purescript-parsing/releases/tag/v6.0.2 ) - 2021-05-09
@@ -26,12 +43,12 @@ Other improvements:
26
43
## [ v6.0.0] ( https://github.com/purescript-contrib/purescript-parsing/releases/tag/v6.0.0 ) - 2021-02-26
27
44
28
45
Breaking changes:
29
- - Improved performance of ` string ` and update ` StringLike ` to have ` stripPrefix ` as a class member instead of ` indexOf ` (#93 )
46
+ - Improved performance of ` string ` and update ` StringLike ` to have ` stripPrefix ` as a class member instead of ` indexOf ` (#93 )
30
47
- Non-empty combinators now return ` NonEmptyList ` (#102 )
31
48
- Added support for PureScript 0.14 and dropped support for all previous versions (#101 )
32
49
33
50
New features:
34
- - Derived ` Generic ` instance of Position (#87 )
51
+ - Derived ` Generic ` instance of Position (#87 )
35
52
36
53
Bugfixes:
37
54
0 commit comments