We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c199c4 commit e69a8cfCopy full SHA for e69a8cf
CHANGELOG.md
@@ -1,6 +1,11 @@
1
v0.7.1
2
==================
3
4
+* Fixes for devel (#17)
5
+
6
+v0.7.1
7
+==================
8
9
* Update dependencies
10
11
v0.7.0
regex.nimble
@@ -1,6 +1,6 @@
# Package
-version = "0.7.1"
+version = "0.7.2"
author = "Esteban Castro Borsani (@nitely)"
description = "Linear time regex matching"
license = "MIT"
src/regex.nim
@@ -351,8 +351,8 @@ proc initNotSetNode(): Node =
351
initSetNodeImpl(result, reNotSet)
352
353
proc initGroupStart(
354
- name: string = nil,
355
- flags: seq[Flag] = nil,
+ name: string = "",
+ flags: seq[Flag] = @[],
356
isCapturing = true): Node =
357
## return a ``reGroupStart`` node
358
Node(
0 commit comments