Skip to content

Commit

Permalink
Bump version to 2.15.0.rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
mudge committed Dec 16, 2024
1 parent 74f5101 commit d1a6abe
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,19 @@ 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-16
### Added
- Add support for Ruby 3.4.0-rc1 in precompiled, native gems.

### Changed
- Provide separate precompiled, native gems for GNU and Musl.
- Require glibc 2.29+ for x86-linux-gnu and x86_64-linux-gnu (and recommend
RubyGems 3.3.22+ and Bundler 2.3.21+).

### Removed
- Drop support for Ruby versions older than 3.1 as they do not ship with a
version of RubyGems new enough to handle the new Musl gems.

## [2.14.0] - 2024-08-02
### Changed
- Upgrade the bundled version of Abseil to 20240722.0, removing the need to
Expand Down Expand Up @@ -279,6 +292,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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/re2/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@


module RE2
VERSION = "2.14.0"
VERSION = "2.15.0.rc1"
end
2 changes: 1 addition & 1 deletion re2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |s|
s.homepage = "https://github.com/mudge/re2"
s.extensions = ["ext/re2/extconf.rb"]
s.license = "BSD-3-Clause"
s.required_ruby_version = ">= 2.6.0"
s.required_ruby_version = ">= 3.1.0"
s.files = [
"dependencies.yml",
"ext/re2/extconf.rb",
Expand Down

0 comments on commit d1a6abe

Please sign in to comment.