Skip to content

Commit 0b892e9

Browse files
committed
update readme
1 parent a55f726 commit 0b892e9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Features:
99

1010
* The match time is linear in the length of the input string
1111
* Regular expressions are (optionally) compiled at compile-time
12-
* Captures all group repetitions (not just the last one)
1312
* Unicode level-1 support
1413
* Descriptive error messages
1514
* Supports matching at compile-time (Nim +0.20)

regex.nimble

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ task oldtest, "Test":
4545
# the docker image for CI has it since Nim 1.0.4,
4646
# so I'll only test it there
4747
when (NimMajor, NimMinor, NimPatch) >= (1, 0, 4) and
48-
(NimMajor, NimMinor) != (1, 4): # issue #88
48+
(NimMajor, NimMinor) != (1, 4) and # issue #88
49+
(NimMajor, NimMinor) != (1, 6):
4950
exec "nim js -r tests/tests.nim"
5051
exec "nim js -r -d:forceRegexAtRuntime tests/tests.nim"
5152

0 commit comments

Comments
 (0)