Skip to content

Commit 650109d

Browse files
committed
Prepare release v27.0.0
Created-by: polyglot-release v1.3.2
1 parent dbc4c3e commit 650109d

File tree

13 files changed

+26
-23
lines changed

13 files changed

+26
-23
lines changed

CHANGELOG.md

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,8 @@ This project adheres to [Semantic Versioning](http://semver.org).
77
This document is formatted according to the principles of [Keep A CHANGELOG](http://keepachangelog.com).
88

99
## [Unreleased]
10-
### Changed
11-
- [.NET] Bump sdk to .net 8. Added .net 8 to test platforms
12-
- [Go, Perl, Ruby] Upgraded messages to v22
13-
- [Go] Improve performance - don't compile regex on matcher create
14-
- [Perl] Fix release packaging
15-
- [Perl] Include CHANGELOG.md in tarball
16-
- [Perl] Harmonized error reporting with mainstream implementations - errors are now converted to messages and reported in the message stream ([#31](https://github.com/cucumber/gherkin/issues/31))
17-
- [Ruby] Update minimum ruby requirement from 2.3 to 2.5
1810

11+
## [27.0.0] - 2023-09-15
1912
### Added
2013
- (i18n) Added Malayalam localization
2114
- (i18n) Added 'ed' to Italian ([#31](https://github.com/cucumber/gherkin/issues/160))
@@ -25,6 +18,15 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
2518
- [Ruby] Added `Gherkin::Query#parent_locations` for determining a scenario's parents' line numbers ([#89](https://github.com/cucumber/gherkin/pull/89))
2619
- C++ implementation [#117](https://github.com/cucumber/gherkin/pull/117)
2720

21+
### Changed
22+
- [.NET] Bump sdk to .net 8. Added .net 8 to test platforms
23+
- [Go, Perl, Ruby] Upgraded messages to v22
24+
- [Go] Improve performance - don't compile regex on matcher create
25+
- [Perl] Fix release packaging
26+
- [Perl] Include CHANGELOG.md in tarball
27+
- [Perl] Harmonized error reporting with mainstream implementations - errors are now converted to messages and reported in the message stream ([#31](https://github.com/cucumber/gherkin/issues/31))
28+
- [Ruby] Update minimum ruby requirement from 2.3 to 2.5
29+
2830
## [26.2.0] - 2023-04-07
2931
### Changed
3032
- Upgraded messages to v22
@@ -635,7 +637,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
635637
### Changed
636638
- First release
637639

638-
[Unreleased]: https://github.com/cucumber/gherkin/compare/v26.2.0...main
640+
[Unreleased]: https://github.com/cucumber/gherkin/compare/v27.0.0...main
641+
[27.0.0]: https://github.com/cucumber/gherkin/compare/v26.2.0...main
639642
[26.2.0]: https://github.com/cucumber/gherkin/compare/v26.1.0...main
640643
[26.1.0]: https://github.com/cucumber/gherkin/compare/v26.0.3...main
641644
[26.0.3]: https://github.com/cucumber/gherkin/compare/v26.0.2...main

c/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
26.2.0
1+
27.0.0

dotnet/Gherkin/Gherkin.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</PropertyGroup>
1010

1111
<PropertyGroup Label="Version">
12-
<VersionNumber>26.2.0</VersionNumber>
12+
<VersionNumber>27.0.0</VersionNumber>
1313
<Version Condition="'$(SnapshotSuffix)' != ''">$(VersionNumber)-$(SnapshotSuffix)</Version>
1414
<Version Condition="'$(SnapshotSuffix)' == ''">$(VersionNumber)</Version>
1515
</PropertyGroup>

elixir/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ defmodule CucumberGherkin.MixProject do
66
def project do
77
[
88
app: :cucumber_gherkin,
9-
version: "26.2.0",
9+
version: "27.0.0",
1010
name: "CucumberGherkin",
1111
description: description(),
1212
package: package(),

go/gherkin-generate-tokens/gherkin-generate-tokens.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
import (
44
"fmt"
5-
gherkin "github.com/cucumber/gherkin/go/v26"
5+
gherkin "github.com/cucumber/gherkin/go/v27"
66
"io"
77
"os"
88
"strings"

go/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/cucumber/gherkin/go/v26
1+
module github.com/cucumber/gherkin/go/v27
22

33
require (
44
github.com/cucumber/messages/go/v22 v22.0.0

go/main/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"encoding/json"
1010
"flag"
1111
"fmt"
12-
gherkin "github.com/cucumber/gherkin/go/v26"
12+
gherkin "github.com/cucumber/gherkin/go/v27"
1313
"github.com/cucumber/messages/go/v22"
1414
"os"
1515
)

java/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88
<version>4.1.1</version>
99
</parent>
1010
<artifactId>gherkin</artifactId>
11-
<version>26.2.1-SNAPSHOT</version>
11+
<version>27.0.0</version>
1212
<packaging>jar</packaging>
1313
<name>Gherkin</name>
1414
<description>Gherkin parser</description>
1515
<url>https://github.com/cucumber/gherkin</url>
1616

1717
<properties>
18-
<project.build.outputTimestamp>1680869393</project.build.outputTimestamp>
18+
<project.build.outputTimestamp>1694785406</project.build.outputTimestamp>
1919
<project.Automatic-Module-Name>io.cucumber.gherkin</project.Automatic-Module-Name>
2020
</properties>
2121

2222
<scm>
2323
<connection>scm:git:git://github.com/cucumber/gherkin.git</connection>
2424
<developerConnection>scm:git:git@github.com:cucumber/gherkin.git</developerConnection>
2525
<url>git://github.com/cucumber/gherkin.git</url>
26-
<tag>HEAD</tag>
26+
<tag>v27.0.0</tag>
2727
</scm>
2828

2929
<dependencyManagement>

javascript/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cucumber/gherkin",
3-
"version": "26.2.0",
3+
"version": "27.0.0",
44
"description": "Gherkin parser",
55
"main": "dist/src/index.js",
66
"types": "dist/src/index.d.ts",

perl/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
26.2.0
1+
27.0.0

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from distutils.core import setup
33
setup(name="gherkin-official",
44
packages=["gherkin", "gherkin.pickles", "gherkin.stream"],
5-
version="26.2.0",
5+
version="27.0.0",
66
description="Gherkin parser (official, by Cucumber team)",
77
long_description="Gherkin parser (official, by Cucumber team)",
88
author="Cucumber Ltd and Björn Rasmusson",

ruby/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
26.2.0
1+
27.0.0

0 commit comments

Comments
 (0)