From d718372f40a890a973093737160b4735ecdeeb7c Mon Sep 17 00:00:00 2001 From: Tom Lord Date: Thu, 15 Jan 2015 10:15:31 +0000 Subject: [PATCH] Version bump, to v0.2.2 Key feature added: Exceptions thrown for lookarounds --- README.md | 2 +- lib/regexp-examples/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6b2acd8..4bbdb12 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ or a huge number of possible matches, such as `/.\w/`, then only a subset of the I plan to add the following features to the gem, but have not yet got round to it: -* Throw exceptions if illegal syntax (see below) is used +* Throw exceptions if illegal syntax (see below) is used. This is currently only partially implemented (for lookarounds only). * POSIX bracket expressions, e.g. `/[[:alnum:]]/`, `/[[:space:]]/` * Options, e.g. `/pattern/i`, `/foo.*bar/m` * Escape sequences, e.g. `/\xa1/` diff --git a/lib/regexp-examples/version.rb b/lib/regexp-examples/version.rb index 3ecb885..d8bcede 100644 --- a/lib/regexp-examples/version.rb +++ b/lib/regexp-examples/version.rb @@ -1,3 +1,3 @@ module RegexpExamples - VERSION = '0.2.1' + VERSION = '0.2.2' end