diff --git a/CHANGELOG.md b/CHANGELOG.md index 48554ac..4dd8e36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ project adheres to [Semantic Versioning](http://semver.org/). Older versions are detailed as [GitHub releases](https://github.com/mudge/re2/releases) for this project. +## [2.13.0] - 2024-06-30 +### Changed +- Upgrade the bundled version of RE2 to 2024-07-01. + ## [2.12.0] - 2024-06-02 ### Changed - Upgrade the bundled version of RE2 to 2024-06-01. @@ -262,6 +266,7 @@ releases](https://github.com/mudge/re2/releases) for this project. ### Fixed - In Ruby 1.9.2 and later, re2 will now set the correct encoding for strings +[2.13.0]: https://github.com/mudge/re2/releases/tag/v2.13.0 [2.12.0]: https://github.com/mudge/re2/releases/tag/v2.12.0 [2.11.0]: https://github.com/mudge/re2/releases/tag/v2.11.0 [2.10.0]: https://github.com/mudge/re2/releases/tag/v2.10.0 diff --git a/README.md b/README.md index 9d6ea0c..0e1ad66 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,8 @@ Python". [![Build Status](https://github.com/mudge/re2/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/mudge/re2/actions) -**Current version:** 2.12.0 -**Bundled RE2 version:** libre2.11 (2024-06-01) +**Current version:** 2.13.0 +**Bundled RE2 version:** libre2.11 (2024-07-01) ```ruby RE2('h.*o').full_match?("hello") #=> true @@ -261,7 +261,7 @@ This gem requires the following to run: It supports the following RE2 ABI versions: -* libre2.0 (prior to release 2020-03-02) to libre2.11 (2023-07-01 to 2024-06-01) +* libre2.0 (prior to release 2020-03-02) to libre2.11 (2023-07-01 to 2024-07-01) ### Native gems diff --git a/lib/re2/version.rb b/lib/re2/version.rb index 17c961b..b97eda1 100644 --- a/lib/re2/version.rb +++ b/lib/re2/version.rb @@ -10,5 +10,5 @@ module RE2 - VERSION = "2.12.0" + VERSION = "2.13.0" end