Skip to content

Commit c02ae18

Browse files
committed
Prepare release v31.0.0
Created-by: polyglot-release v1.6.0
1 parent 406f8d7 commit c02ae18

File tree

14 files changed

+27
-24
lines changed

14 files changed

+27
-24
lines changed

CHANGELOG.md

+10-7
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,26 @@ 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+
11+
## [31.0.0] - 2025-01-29
1012
### Added
1113
- [All] Allow comment inside descriptions ([#334](https://github.com/cucumber/gherkin/pull/334))
1214
- [.NET] Enabled overriding of parser's error-handling
1315
- [Python] Expose Python public API as package imports ([#352](https://github.com/cucumber/gherkin/pull/352))
1416
- [Python] Added support for Python 3.13
1517

16-
### Fixed
17-
- [c] slight update to existing CMakeFiles.txt to propagate VERSION. Close #320 ([#328](https://github.com/cucumber/gherkin/pull/328))
18-
- [.NET] Improved parsing time
19-
- [.NET] Use string-ordinal comparison consistently and remove old Mono workaround
20-
- [.NET] Improved startup time
21-
2218
### Changed
2319
- [cpp] add generic support for ABI versioning with VERSION ([#328](https://github.com/cucumber/gherkin/pull/328))
2420
- [cpp] namespace was changed to 'cucumber::gherkin' to better reflect project structure and prevent clashing
2521
- [.NET] Removed dependency on System.Text.Json and related logic in GherkinDialectProvider
2622
- [Elixir] Updates dependencies, bumps messages to 27.0.2
2723

24+
### Fixed
25+
- [c] slight update to existing CMakeFiles.txt to propagate VERSION. Close #320 ([#328](https://github.com/cucumber/gherkin/pull/328))
26+
- [.NET] Improved parsing time
27+
- [.NET] Use string-ordinal comparison consistently and remove old Mono workaround
28+
- [.NET] Improved startup time
29+
2830
### Removed
2931
- [Python] Dropped support for Python 3.8
3032

@@ -731,7 +733,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
731733
### Changed
732734
- First release
733735

734-
[Unreleased]: https://github.com/cucumber/gherkin/compare/v30.0.4...HEAD
736+
[Unreleased]: https://github.com/cucumber/gherkin/compare/v31.0.0...HEAD
737+
[31.0.0]: https://github.com/cucumber/gherkin/compare/v30.0.4...v31.0.0
735738
[30.0.4]: https://github.com/cucumber/gherkin/compare/v30.0.3...v30.0.4
736739
[30.0.3]: https://github.com/cucumber/gherkin/compare/v30.0.2...v30.0.3
737740
[30.0.2]: https://github.com/cucumber/gherkin/compare/v30.0.1...v30.0.2

c/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30.0.4
1+
31.0.0

cpp/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30.0.4
1+
31.0.0

dotnet/Gherkin/Gherkin.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<PropertyGroup Label="Version">
13-
<VersionNumber>30.0.4</VersionNumber>
13+
<VersionNumber>31.0.0</VersionNumber>
1414
<Version Condition="'$(SnapshotSuffix)' != ''">$(VersionNumber)-$(SnapshotSuffix)</Version>
1515
<Version Condition="'$(SnapshotSuffix)' == ''">$(VersionNumber)</Version>
1616
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<Product>Gherkin Parser</Product>
2020
<PackageId>Gherkin</PackageId>
2121
<Authors>Cucumber Ltd, Gaspar Nagy</Authors>
22-
<Copyright>Copyright © Cucumber Ltd, Gaspar Nagy</Copyright>
22+
<Copyright>Copyright &#xA9; Cucumber Ltd, Gaspar Nagy</Copyright>
2323
<Description>Cross-platform parser for the Gherkin language, used by Cucumber, SpecFlow and other Cucumber-based tools to parse feature files.</Description>
2424
<PackageTags>specflow gherkin cucumber</PackageTags>
2525
<PackageProjectUrl>https://github.com/cucumber/gherkin</PackageProjectUrl>
@@ -33,7 +33,7 @@
3333
</PropertyGroup>
3434

3535
<ItemGroup>
36-
<ProjectReference Include="..\Gherkin.SourceGenerator\Gherkin.SourceGenerator.csproj" ReferenceOutputAssembly="false" OutputItemType="Analyzer" />
36+
<ProjectReference Include="..\Gherkin.SourceGenerator\Gherkin.SourceGenerator.csproj" ReferenceOutputAssembly="false" OutputItemType="Analyzer"/>
3737
</ItemGroup>
3838

3939
<ItemGroup>

elixir/mix.exs

+1-1
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: "30.0.4",
9+
version: "31.0.0",
1010
name: "CucumberGherkin",
1111
description: description(),
1212
package: package(),

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

+1-1
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/v30"
5+
gherkin "github.com/cucumber/gherkin/go/v31"
66
"io"
77
"os"
88
"strings"

go/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/cucumber/gherkin/go/v30
1+
module github.com/cucumber/gherkin/go/v31
22

33
require (
44
github.com/cucumber/messages/go/v24 v24.1.0

go/main/main.go

+1-1
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/v30"
12+
gherkin "github.com/cucumber/gherkin/go/v31"
1313
"github.com/cucumber/messages/go/v24"
1414
"os"
1515
)

java/pom.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@
88
<version>4.2.0</version>
99
</parent>
1010
<artifactId>gherkin</artifactId>
11-
<version>30.0.5-SNAPSHOT</version>
11+
<version>31.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>1731680948</project.build.outputTimestamp>
18+
<project.build.outputTimestamp>1738172307</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:[email protected]:cucumber/gherkin.git</developerConnection>
2525
<url>git://github.com/cucumber/gherkin.git</url>
26-
<tag>HEAD</tag>
26+
<tag>v31.0.0</tag>
2727
</scm>
2828

2929
<dependencyManagement>

javascript/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/package.json

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

perl/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30.0.4
1+
31.0.0

python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gherkin-official"
7-
version = "30.0.4"
7+
version = "31.0.0"
88
description = "Gherkin parser (official, by Cucumber team)"
99
readme = "README.md"
1010
requires-python = ">=3.9"

ruby/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30.0.4
1+
31.0.0

0 commit comments

Comments
 (0)