From 90aaf83ab5c65ad8ab143d32fb50d229e70dea03 Mon Sep 17 00:00:00 2001 From: Paul Mucur Date: Sun, 15 Dec 2024 14:39:06 +0000 Subject: [PATCH] Bump version to 2.15.0.rc1 --- CHANGELOG.md | 9 +++++++++ README.md | 4 ++-- lib/re2/version.rb | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3bede1..2510b07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.15.0.rc1] - 2024-12-15 +### Added +- Add support for Ruby 3.4.0-rc1 in the precompiled native gem for all + supported platforms. + +### Changed +- The precompiled native gems now require glibc 2.29+ for x86-linux and x86_64-linux. + ## [2.14.0] - 2024-08-02 ### Changed - Upgrade the bundled version of Abseil to 20240722.0, removing the need to @@ -279,6 +287,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.15.0.rc1]: https://github.com/mudge/re2/releases/tag/v2.15.0.rc1 [2.14.0]: https://github.com/mudge/re2/releases/tag/v2.14.0 [2.13.2]: https://github.com/mudge/re2/releases/tag/v2.13.2 [2.13.1]: https://github.com/mudge/re2/releases/tag/v2.13.1 diff --git a/README.md b/README.md index 71b67af..d0147ba 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ 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.14.0 +**Current version:** 2.15.0.rc1 **Bundled RE2 version:** libre2.11 (2024-07-02) ```ruby @@ -257,7 +257,7 @@ RE2(non_latin1_pattern.encode("ISO-8859-1"), utf8: false).match(non_latin1_text. This gem requires the following to run: -* [Ruby](https://www.ruby-lang.org/en/) 2.6 to 3.3 +* [Ruby](https://www.ruby-lang.org/en/) 2.6 to 3.4.0-rc1 It supports the following RE2 ABI versions: diff --git a/lib/re2/version.rb b/lib/re2/version.rb index ad6c89d..27a1320 100644 --- a/lib/re2/version.rb +++ b/lib/re2/version.rb @@ -10,5 +10,5 @@ module RE2 - VERSION = "2.14.0" + VERSION = "2.15.0.rc1" end