Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nitely committed Aug 13, 2023
1 parent a55f726 commit 0b892e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ Features:

* The match time is linear in the length of the input string
* Regular expressions are (optionally) compiled at compile-time
* Captures all group repetitions (not just the last one)
* Unicode level-1 support
* Descriptive error messages
* Supports matching at compile-time (Nim +0.20)
Expand Down
3 changes: 2 additions & 1 deletion regex.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ task oldtest, "Test":
# the docker image for CI has it since Nim 1.0.4,
# so I'll only test it there
when (NimMajor, NimMinor, NimPatch) >= (1, 0, 4) and
(NimMajor, NimMinor) != (1, 4): # issue #88
(NimMajor, NimMinor) != (1, 4) and # issue #88
(NimMajor, NimMinor) != (1, 6):
exec "nim js -r tests/tests.nim"
exec "nim js -r -d:forceRegexAtRuntime tests/tests.nim"

Expand Down

0 comments on commit 0b892e9

Please sign in to comment.