Skip to content

Commit 7e117a1

Browse files
committed
Update CHANGELOG and bump version to 1.2.0
1 parent df1b44a commit 7e117a1

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ 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.2.0] - 2020-04-18
9+
### Changed
10+
- Stop using the now-deprecated utf8 API and re-implement it in terms of the
11+
encoding API in order to support both existing and upcoming releases of re2
12+
813
## [1.1.1] - 2017-07-24
914
### Fixed
1015
- Ensure that any compilers passed via the CC and CXX environment variables are
@@ -51,6 +56,7 @@ releases](https://github.com/mudge/re2/releases) for this project.
5156
### Fixed
5257
- In Ruby 1.9.2 and later, re2 will now set the correct encoding for strings
5358

59+
[1.2.0]: https://github.com/mudge/re2/releases/tag/v1.2.0
5460
[1.1.1]: https://github.com/mudge/re2/releases/tag/v1.1.1
5561
[1.1.0]: https://github.com/mudge/re2/releases/tag/v1.1.0
5662
[1.0.0]: https://github.com/mudge/re2/releases/tag/v1.0.0

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
re2 (1.1.1)
4+
re2 (1.2.0)
55

66
GEM
77
remote: http://rubygems.org/

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ re2 [![Build Status](https://travis-ci.org/mudge/re2.svg?branch=master)](http://
44
A Ruby binding to [re2][], an "efficient, principled regular expression
55
library".
66

7-
**Current version:** 1.1.1
7+
**Current version:** 1.2.0
88
**Supported Ruby versions:** 1.8.7, 1.9.2, 1.9.3, 2.0.0, 2.1.0, 2.2, 2.3, Rubinius 3.8
99

1010
Installation
@@ -166,9 +166,11 @@ Contributions
166166
-------------
167167

168168
* Thanks to [Jason Woods](https://github.com/driskell) who contributed the
169-
original implementations of `RE2::MatchData#begin` and `RE2::MatchData#end`;
169+
original implementations of `RE2::MatchData#begin` and `RE2::MatchData#end`;
170170
* Thanks to [Stefano Rivera](https://github.com/stefanor) who first contributed C++11 support;
171-
* Thanks to [Stan Hu](https://github.com/stanhu) for reporting a bug with empty patterns and `RE2::Regexp#scan`.
171+
* Thanks to [Stan Hu](https://github.com/stanhu) for reporting a bug with empty patterns and `RE2::Regexp#scan`;
172+
* Thanks to [Sebastian Reitenbach](https://github.com/buzzdeee) for reporting
173+
the deprecation and removal of the `utf8` encoding option in re2.
172174

173175
Contact
174176
-------

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.1.1"
5+
s.version = "1.2.0"
66
s.authors = ["Paul Mucur"]
77
s.homepage = "https://github.com/mudge/re2"
88
s.email = "[email protected]"

0 commit comments

Comments
 (0)