File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,19 @@ project adheres to [Semantic Versioning](http://semver.org/).
5
5
Older versions are detailed as [ GitHub
6
6
releases] ( https://github.com/mudge/re2/releases ) for this project.
7
7
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
+
8
21
## [ 2.14.0] - 2024-08-02
9
22
### Changed
10
23
- 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.
279
292
### Fixed
280
293
- In Ruby 1.9.2 and later, re2 will now set the correct encoding for strings
281
294
295
+ [ 2.15.0.rc1 ] : https://github.com/mudge/re2/releases/tag/v2.15.0.rc1
282
296
[ 2.14.0 ] : https://github.com/mudge/re2/releases/tag/v2.14.0
283
297
[ 2.13.2 ] : https://github.com/mudge/re2/releases/tag/v2.13.2
284
298
[ 2.13.1 ] : https://github.com/mudge/re2/releases/tag/v2.13.1
Original file line number Diff line number Diff line change 6
6
7
7
[ ![ Build Status] ( https://github.com/mudge/re2/actions/workflows/tests.yml/badge.svg?branch=main )] ( https://github.com/mudge/re2/actions )
8
8
9
- ** Current version:** 2.14.0
9
+ ** Current version:** 2.15.0.rc1
10
10
** Bundled RE2 version:** libre2.11 (2024-07-02)
11
11
12
12
``` ruby
Original file line number Diff line number Diff line change 10
10
11
11
12
12
module RE2
13
- VERSION = "2.14.0 "
13
+ VERSION = "2.15.0.rc1 "
14
14
end
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ Gem::Specification.new do |s|
11
11
s . homepage = "https://github.com/mudge/re2"
12
12
s . extensions = [ "ext/re2/extconf.rb" ]
13
13
s . license = "BSD-3-Clause"
14
- s . required_ruby_version = ">= 2.6 .0"
14
+ s . required_ruby_version = ">= 3.1 .0"
15
15
s . files = [
16
16
"dependencies.yml" ,
17
17
"ext/re2/extconf.rb" ,
You can’t perform that action at this time.
0 commit comments