Skip to content

Commit

Permalink
Release v1.8.0
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
jaynetics committed Sep 20, 2020
1 parent d109b56 commit bae4ea0
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,25 @@
## [Unreleased]

### [1.8.0] - 2020-09-20 - [Janosch Müller](mailto:janosch84@gmail.com)

### Changed

- dropped support for running on Ruby 1.9.x

### Added

- regexp flags can now be passed when parsing a `String` as regexp body
* see the [README](/README.md#usage) for details
* thanks to [Owen Stephens](https://github.com/owst)
- bare occurrences of `\g` and `\k` are now allowed and scanned as literal escapes
* matches Onigmo behavior
* thanks for the report to [Marc-André Lafortune](https://github.com/marcandre)

### Fixed

- fixed parsing comments without preceding space or trailing newline in x-mode
* thanks to [Owen Stephens](https://github.com/owst)

### [1.7.1] - 2020-06-07 - [Ammar Ali](mailto:ammarabuali@gmail.com)

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -8,7 +8,7 @@ A Ruby gem for tokenizing, parsing, and transforming regular expressions.
* A scanner/tokenizer based on [Ragel](http://www.colm.net/open-source/ragel/)
* A lexer that produces a "stream" of token objects.
* A parser that produces a "tree" of Expression objects (OO API)
* Runs on Ruby 1.9, 2.x, and JRuby (1.9 mode) runtimes.
* Runs on Ruby 2.x and JRuby runtimes
* Recognizes Ruby 1.8, 1.9, and 2.x regular expressions [See Supported Syntax](#supported-syntax)


Expand Down
2 changes: 1 addition & 1 deletion lib/regexp_parser/version.rb
@@ -1,5 +1,5 @@
class Regexp
class Parser
VERSION = '1.7.1'
VERSION = '1.8.0'
end
end

0 comments on commit bae4ea0

Please sign in to comment.