diff --git a/CHANGELOG.md b/CHANGELOG.md index 65ba2a7..0c47e1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## [Unreleased] +### [1.7.1] - 2020-06-07 - [Ammar Ali](mailto:ammarabuali@gmail.com) + +### Fixed + +- Support for literals that include the unescaped delimiters `{`, `}`, and `]`. These + delimiters are informally supported by various regexp engines. + ### [1.7.0] - 2020-02-23 - [Janosch Müller](mailto:janosch84@gmail.com) ### Added diff --git a/lib/regexp_parser/version.rb b/lib/regexp_parser/version.rb index b004bb7..387a591 100644 --- a/lib/regexp_parser/version.rb +++ b/lib/regexp_parser/version.rb @@ -1,5 +1,5 @@ class Regexp class Parser - VERSION = '1.7.0' + VERSION = '1.7.1' end end