Skip to content

Commit fd5cc21

Browse files
committed
version bump
1 parent 0480fa2 commit fd5cc21

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def get_authors():
7474
def main():
7575
setup(
7676
name="re2",
77-
version="0.2.22",
77+
version="0.2.23",
7878
description="Python wrapper for Google's RE2 using Cython",
7979
long_description=get_long_description(),
8080
author=get_authors(),

src/re2.cpp

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/re2.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ FALLBACK_QUIETLY = 0
2020
FALLBACK_WARNING = 1
2121
FALLBACK_EXCEPTION = 2
2222

23-
VERSION = (0, 2, 22)
24-
VERSION_HEX = 0x000216
23+
VERSION = (0, 2, 23)
24+
VERSION_HEX = 0x000217
2525

2626
# Type of compiled re object from Python stdlib
2727
SREPattern = type(re.compile(''))

0 commit comments

Comments
 (0)