Skip to content

Commit

Permalink
Prepare 0.7.0 and credit Jason Woods
Browse files Browse the repository at this point in the history
  • Loading branch information
mudge committed Jan 25, 2015
1 parent 799bc28 commit cefd91f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
re2 (0.6.1)
re2 (0.7.0)

GEM
remote: http://rubygems.org/
Expand Down
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ re2 [![Build Status](https://travis-ci.org/mudge/re2.svg?branch=master)](http://
A Ruby binding to [re2][], an "efficient, principled regular expression
library".

**Current version:** 0.6.1
**Current version:** 0.7.0
**Supported Ruby versions:** 1.8.7, 1.9.2, 1.9.3, 2.0.0, 2.1.0, Rubinius 2.2

Installation
Expand Down Expand Up @@ -55,6 +55,10 @@ $ irb -rubygems
=> "1"
> m.string
=> "w1234"
> m.begin(1)
=> 1
> m.end(1)
=> 2
> r =~ "w1234"
=> true
> r !~ "bob"
Expand Down Expand Up @@ -151,6 +155,12 @@ Features
[`RE2.escape(unquoted)`](http://code.google.com/p/re2/source/browse/re2/re2.h#377) and
`RE2.quote(unquoted)`

Contributions
-------------

Thanks to [Jason Woods](https://github.com/driskell) who contributed the
original implementations of `RE2::MatchData#begin` and `RE2::MatchData#end`.

Contact
-------

Expand Down
2 changes: 1 addition & 1 deletion re2.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Gem::Specification.new do |s|
s.name = "re2"
s.summary = "Ruby bindings to re2."
s.description = 'Ruby bindings to re2, "an efficient, principled regular expression library".'
s.version = "0.6.1"
s.version = "0.7.0"
s.authors = ["Paul Mucur"]
s.homepage = "http://github.com/mudge/re2"
s.email = "ruby.re2@librelist.com"
Expand Down

0 comments on commit cefd91f

Please sign in to comment.