Skip to content

Commit d1a6abe

Browse files
committed
Bump version to 2.15.0.rc1
1 parent 74f5101 commit d1a6abe

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@ project adheres to [Semantic Versioning](http://semver.org/).
55
Older versions are detailed as [GitHub
66
releases](https://github.com/mudge/re2/releases) for this project.
77

8+
## [2.15.0.rc1] - 2024-12-16
9+
### Added
10+
- Add support for Ruby 3.4.0-rc1 in precompiled, native gems.
11+
12+
### Changed
13+
- Provide separate precompiled, native gems for GNU and Musl.
14+
- Require glibc 2.29+ for x86-linux-gnu and x86_64-linux-gnu (and recommend
15+
RubyGems 3.3.22+ and Bundler 2.3.21+).
16+
17+
### Removed
18+
- Drop support for Ruby versions older than 3.1 as they do not ship with a
19+
version of RubyGems new enough to handle the new Musl gems.
20+
821
## [2.14.0] - 2024-08-02
922
### Changed
1023
- Upgrade the bundled version of Abseil to 20240722.0, removing the need to
@@ -279,6 +292,7 @@ releases](https://github.com/mudge/re2/releases) for this project.
279292
### Fixed
280293
- In Ruby 1.9.2 and later, re2 will now set the correct encoding for strings
281294

295+
[2.15.0.rc1]: https://github.com/mudge/re2/releases/tag/v2.15.0.rc1
282296
[2.14.0]: https://github.com/mudge/re2/releases/tag/v2.14.0
283297
[2.13.2]: https://github.com/mudge/re2/releases/tag/v2.13.2
284298
[2.13.1]: https://github.com/mudge/re2/releases/tag/v2.13.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Python".
66

77
[![Build Status](https://github.com/mudge/re2/actions/workflows/tests.yml/badge.svg?branch=main)](https://github.com/mudge/re2/actions)
88

9-
**Current version:** 2.14.0
9+
**Current version:** 2.15.0.rc1
1010
**Bundled RE2 version:** libre2.11 (2024-07-02)
1111

1212
```ruby

lib/re2/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010

1111

1212
module RE2
13-
VERSION = "2.14.0"
13+
VERSION = "2.15.0.rc1"
1414
end

re2.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
1111
s.homepage = "https://github.com/mudge/re2"
1212
s.extensions = ["ext/re2/extconf.rb"]
1313
s.license = "BSD-3-Clause"
14-
s.required_ruby_version = ">= 2.6.0"
14+
s.required_ruby_version = ">= 3.1.0"
1515
s.files = [
1616
"dependencies.yml",
1717
"ext/re2/extconf.rb",

0 commit comments

Comments
 (0)