Skip to content

Commit c07ce86

Browse files
committed
Prepare release v30.0.0
Created-by: polyglot-release v1.5.0
1 parent de657ff commit c07ce86

File tree

13 files changed

+21
-19
lines changed

13 files changed

+21
-19
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +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+
11+
## [30.0.0] - 2024-10-24
1012
### Added
1113
- [PHP, Java, Ruby, JavaScript] update dependency messages up to v26
1214
- [Python] Added type annotations ([#283](https://github.com/cucumber/gherkin/pull/283))
@@ -26,7 +28,6 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
2628
- [Python] Drop compatibility for python 2 and python 3.8. Supported python versions: 3.9, 3.10, 3.11, 3.12, 3.13
2729
- [Python] Removed installation of `gherkin` script. It was used for internal acceptance tests only.
2830

29-
3031
## [29.0.0] - 2024-08-12
3132
### Added
3233
- (i18n) Added Gujarati translation for "Rule" ([#249](https://github.com/cucumber/gherkin/pull/249))
@@ -687,7 +688,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
687688
### Changed
688689
- First release
689690

690-
[Unreleased]: https://github.com/cucumber/gherkin/compare/v29.0.0...HEAD
691+
[Unreleased]: https://github.com/cucumber/gherkin/compare/v30.0.0...HEAD
692+
[30.0.0]: https://github.com/cucumber/gherkin/compare/v29.0.0...v30.0.0
691693
[29.0.0]: https://github.com/cucumber/gherkin/compare/v28.0.0...v29.0.0
692694
[28.0.0]: https://github.com/cucumber/gherkin/compare/v27.0.0...v28.0.0
693695
[27.0.0]: https://github.com/cucumber/gherkin/compare/v26.2.0...v27.0.0

c/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
29.0.0
1+
30.0.0

dotnet/Gherkin/Gherkin.csproj

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

1212
<PropertyGroup Label="Version">
13-
<VersionNumber>29.0.0</VersionNumber>
13+
<VersionNumber>30.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,11 +33,11 @@
3333
</PropertyGroup>
3434

3535
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
36-
<PackageReference Include="System.Text.Json" Version="6.0.10" />
36+
<PackageReference Include="System.Text.Json" Version="6.0.10"/>
3737
</ItemGroup>
3838

3939
<ItemGroup>
40-
<EmbeddedResource Include="gherkin-languages.json" />
40+
<EmbeddedResource Include="gherkin-languages.json"/>
4141
</ItemGroup>
4242

4343
<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: "29.0.0",
9+
version: "30.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/v29"
5+
gherkin "github.com/cucumber/gherkin/go/v30"
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/v29
1+
module github.com/cucumber/gherkin/go/v30
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/v29"
12+
gherkin "github.com/cucumber/gherkin/go/v30"
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>29.0.1-SNAPSHOT</version>
11+
<version>30.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>1723455193</project.build.outputTimestamp>
18+
<project.build.outputTimestamp>1729755106</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>v30.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": "29.0.0",
3+
"version": "30.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-
29.0.0
1+
30.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 = "29.0.0"
7+
version = "30.0.0"
88
description = "Gherkin parser (official, by Cucumber team)"
99
readme = "README.md"
1010
requires-python = ">=3.8"

ruby/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
29.0.0
1+
30.0.0

0 commit comments

Comments
 (0)