Skip to content

Commit 54d9ecc

Browse files
committed
update changelog
1 parent 0b892e9 commit 54d9ecc

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
v0.21.0
2+
==================
3+
4+
* New API (issue #111)
5+
* Removed the "capture all group/submatch repetitions" feature.
6+
Only the last group repetition is captured.
7+
8+
Changes to migrate to the new API:
9+
10+
```text
11+
re"regex" -> re2"regex"
12+
Regex -> Regex2
13+
RegexMatch -> RegexMatch2
14+
```
15+
16+
Then deal with `group(RegexMatch2, int)` and similar APIs returning
17+
the last capture group/submatch repetition instead of a sequence
18+
with all of them.
19+
20+
v0.20.2
21+
==================
22+
23+
* Nim compat fixes: #119
24+
25+
v0.20.1
26+
==================
27+
28+
* Nim compat fixes: #117
29+
30+
v0.20.0
31+
==================
32+
33+
* Add `reRepRangeLimit` compile option to define range limit #113
34+
* Nim compat fixes: #98, #101, #110
35+
136
v0.19.0
237
==================
338

0 commit comments

Comments
 (0)