diff --git a/CHANGELOG.md b/CHANGELOG.md index 22c8f18f..acfff98d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.9.3] - 2024-11-29 - Janosch Müller + +### Fixed + +- fixed positive lookbehinds with character ">" being treated as named groups + * e.g. `(?<=foo>)` + * thanks to [Daniel Vandersluis](https://github.com/dvandersluis) + ## [2.9.2] - 2024-05-15 - Janosch Müller ### Fixed diff --git a/lib/regexp_parser/version.rb b/lib/regexp_parser/version.rb index 61a13d6d..8d63f253 100644 --- a/lib/regexp_parser/version.rb +++ b/lib/regexp_parser/version.rb @@ -1,5 +1,5 @@ class Regexp class Parser - VERSION = '2.9.2' + VERSION = '2.9.3' end end