Skip to content
This repository was archived by the owner on May 28, 2019. It is now read-only.

Commit 81b91a2

Browse files
committed
Release 2.12.2
1 parent 2a516f3 commit 81b91a2

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

History.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## [Git master](https://github.com/cucumber/gherkin/compare/v2.12.1...master)
1+
## [2.12.2](https://github.com/cucumber/gherkin/compare/v2.12.1...v2.12.2)
22

33
* [Core] Fix Ruby 2.0 warnings ([#265](https://github.com/cucumber/gherkin/issues/265) Aslak Hellesøy)
44
* [Java] Expose ID so that tools can differentiate between runs of scenario examples ([#279](https://github.com/cucumber/gherkin/pull/278) jtnord)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The jar file is in the central Maven repo.
5454
<dependency>
5555
<groupId>info.cukes</groupId>
5656
<artifactId>gherkin</artifactId>
57-
<version>2.12.1</version>
57+
<version>2.12.2</version>
5858
</dependency>
5959

6060
You can get it manually from [Maven Central](http://search.maven.org/#browse%7C-2073395818)

java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>info.cukes</groupId>
77
<artifactId>gherkin</artifactId>
8-
<version>2.12.2-SNAPSHOT</version>
8+
<version>2.12.2</version>
99
<packaging>bundle</packaging>
1010
<name>Gherkin</name>
1111
<description>Pure Java Gherkin</description>

js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ "name" : "gherkin"
22
, "description" : "A fast Gherkin lexer/parser based on the Ragel State Machine Compiler."
33
, "keywords" : [ "testing", "bdd", "cucumber", "gherkin", "tests" ]
4-
, "version" : "2.12.1"
4+
, "version" : "2.12.2"
55
, "homepage" : "http://github.com/cucumber/gherkin"
66
, "author" : "Aslak Hellesøy <[email protected]>"
77
, "contributors" : [ "Aslak Hellesøy <[email protected]>" ]

lib/gherkin/platform.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
module Gherkin
44
unless defined?(Gherkin::VERSION)
55
# See the comment in gherkin.gemspec if you bump the MINOR version (MAJOR.MINOR.PATCH).
6-
VERSION = '2.12.1'
7-
JRUBY = defined?(JRUBY_VERSION)
6+
VERSION = '2.12.2'
7+
JRUBY = defined?(JRUBY_VERSION)
88

99
if !JRUBY && !(RUBY_VERSION =~ /^(1\.9\.3|2\.0)/)
1010
warn("WARNING: Unsupported Ruby version - #{RUBY_VERSION}")

0 commit comments

Comments
 (0)