Skip to content

Commit

Permalink
Updated Changelog and Fixed Documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
luciferreeves committed Dec 22, 2022
1 parent 7b2ac63 commit 1241a70
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@

Changelog
=========
0.2.2 (2022-12-22)
------------------
* Added Support for Python 3.11
* Added more RegexBuilder Examples

0.2.1 (2022-11-27)
------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/regex-builder/builder/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ You can use the ``.subexpression()`` method like this:
expr = (
RegexBuilder()
.ignore_case()
.multiline()
.multi_line()
.start_of_input()
.optional().string('0x')
.capture()
Expand Down Expand Up @@ -919,7 +919,7 @@ You can use the ``.subexpression()`` method like this:
expr = (
RegexBuilder()
.ignore_case()
.multiline()
.multi_line()
.start_of_input()
.optional().string('0x')
.capture()
Expand Down

0 comments on commit 1241a70

Please sign in to comment.