Skip to content

Commit 26d7be0

Browse files
committed
Bump version to 1.7.0
1 parent df153dc commit 26d7be0

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ 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+
## [1.7.0] - 2023-07-04
9+
### Added
10+
- Added support for libre2.11 (thanks to Stan Hu for contributing this)
11+
812
## [1.6.0] - 2022-10-22
913
### Added
1014
- Added RE2::MatchData#deconstruct and RE2::MatchData#deconstruct_keys so they
@@ -78,6 +82,7 @@ releases](https://github.com/mudge/re2/releases) for this project.
7882
### Fixed
7983
- In Ruby 1.9.2 and later, re2 will now set the correct encoding for strings
8084

85+
[1.7.0]: https://github.com/mudge/re2/releases/tag/v1.7.0
8186
[1.6.0]: https://github.com/mudge/re2/releases/tag/v1.6.0
8287
[1.5.0]: https://github.com/mudge/re2/releases/tag/v1.5.0
8388
[1.4.0]: https://github.com/mudge/re2/releases/tag/v1.4.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ re2 [![Build Status](https://github.com/mudge/re2/actions/workflows/tests.yml/ba
44
A Ruby binding to [re2][], an "efficient, principled regular expression
55
library".
66

7-
**Current version:** 1.6.0
7+
**Current version:** 1.7.0
88
**Supported Ruby versions:** 1.8.7, 1.9.3, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2
9-
**Supported re2 versions:** libre2.0 (< 2020-03-02), libre2.1 (2020-03-02), libre2.6 (2020-03-03), libre2.7 (2020-05-01), libre2.8 (2020-07-06), libre2.9 (2020-11-01), libre2.10 (2022-12-01)
9+
**Supported re2 versions:** libre2.0 (< 2020-03-02), libre2.1 (2020-03-02), libre2.6 (2020-03-03), libre2.7 (2020-05-01), libre2.8 (2020-07-06), libre2.9 (2020-11-01), libre2.10 (2022-12-01), libre2.11 (2023-07-01)
1010

1111
Installation
1212
------------
@@ -214,7 +214,7 @@ Contributions
214214
* Thanks to [Jason Woods](https://github.com/driskell) who contributed the
215215
original implementations of `RE2::MatchData#begin` and `RE2::MatchData#end`;
216216
* Thanks to [Stefano Rivera](https://github.com/stefanor) who first contributed C++11 support;
217-
* Thanks to [Stan Hu](https://github.com/stanhu) for reporting a bug with empty patterns and `RE2::Regexp#scan`;
217+
* Thanks to [Stan Hu](https://github.com/stanhu) for reporting a bug with empty patterns and `RE2::Regexp#scan` and for contributing support for libre2.11 (2023-07-01);
218218
* Thanks to [Sebastian Reitenbach](https://github.com/buzzdeee) for reporting
219219
the deprecation and removal of the `utf8` encoding option in re2;
220220
* Thanks to [Sergio Medina](https://github.com/serch) for reporting a bug when

re2.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Gem::Specification.new do |s|
22
s.name = "re2"
33
s.summary = "Ruby bindings to re2."
44
s.description = 'Ruby bindings to re2, "an efficient, principled regular expression library".'
5-
s.version = "1.6.0"
5+
s.version = "1.7.0"
66
s.authors = ["Paul Mucur"]
77
s.homepage = "https://github.com/mudge/re2"
88
s.extensions = ["ext/re2/extconf.rb"]

0 commit comments

Comments
 (0)