From 787332172175beff70c39a841bb9c9a22d7f991e Mon Sep 17 00:00:00 2001 From: Paul Mucur Date: Thu, 29 Feb 2024 13:38:46 +0000 Subject: [PATCH] Bump version to 2.9.0 --- CHANGELOG.md | 6 ++++++ README.md | 6 +++--- lib/re2/version.rb | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98d805a..bf92feb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ 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.9.0] - 2024-02-29 +### Changed +- Upgrade the bundled version of RE2 to 2024-03-01. +- Upgrade the bundled version of Abseil to 20240116.1. + ## [2.8.0] - 2024-01-31 ### Changed - Upgrade the bundled version of RE2 to 2024-02-01. @@ -241,6 +246,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.9.0]: https://github.com/mudge/re2/releases/tag/v2.9.0 [2.8.0]: https://github.com/mudge/re2/releases/tag/v2.8.0 [2.7.0]: https://github.com/mudge/re2/releases/tag/v2.7.0 [2.6.0]: https://github.com/mudge/re2/releases/tag/v2.6.0 diff --git a/README.md b/README.md index f8476e4..1c656aa 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.8.0 -**Bundled RE2 version:** libre2.11 (2024-02-01) +**Current version:** 2.9.0 +**Bundled RE2 version:** libre2.11 (2024-03-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-02-01) +* libre2.0 (prior to release 2020-03-02) to libre2.11 (2023-07-01 to 2024-03-01) ### Native gems diff --git a/lib/re2/version.rb b/lib/re2/version.rb index 7915fb5..69c9b47 100644 --- a/lib/re2/version.rb +++ b/lib/re2/version.rb @@ -10,5 +10,5 @@ module RE2 - VERSION = "2.8.0" + VERSION = "2.9.0" end