Skip to content

Commit cefd91f

Browse files
committed
Prepare 0.7.0 and credit Jason Woods
1 parent 799bc28 commit cefd91f

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

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 (0.6.1)
4+
re2 (0.7.0)
55

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

README.md

Lines changed: 11 additions & 1 deletion
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:** 0.6.1
7+
**Current version:** 0.7.0
88
**Supported Ruby versions:** 1.8.7, 1.9.2, 1.9.3, 2.0.0, 2.1.0, Rubinius 2.2
99

1010
Installation
@@ -55,6 +55,10 @@ $ irb -rubygems
5555
=> "1"
5656
> m.string
5757
=> "w1234"
58+
> m.begin(1)
59+
=> 1
60+
> m.end(1)
61+
=> 2
5862
> r =~ "w1234"
5963
=> true
6064
> r !~ "bob"
@@ -151,6 +155,12 @@ Features
151155
[`RE2.escape(unquoted)`](http://code.google.com/p/re2/source/browse/re2/re2.h#377) and
152156
`RE2.quote(unquoted)`
153157

158+
Contributions
159+
-------------
160+
161+
Thanks to [Jason Woods](https://github.com/driskell) who contributed the
162+
original implementations of `RE2::MatchData#begin` and `RE2::MatchData#end`.
163+
154164
Contact
155165
-------
156166

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

0 commit comments

Comments
 (0)