Skip to content

Commit

Permalink
Prepare release v30.0.0
Browse files Browse the repository at this point in the history
Created-by: polyglot-release v1.5.0
  • Loading branch information
luke-hill committed Oct 24, 2024
1 parent de657ff commit c07ce86
Show file tree
Hide file tree
Showing 13 changed files with 21 additions and 19 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ This project adheres to [Semantic Versioning](http://semver.org).
This document is formatted according to the principles of [Keep A CHANGELOG](http://keepachangelog.com).

## [Unreleased]

## [30.0.0] - 2024-10-24
### Added
- [PHP, Java, Ruby, JavaScript] update dependency messages up to v26
- [Python] Added type annotations ([#283](https://github.com/cucumber/gherkin/pull/283))
Expand All @@ -26,7 +28,6 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
- [Python] Drop compatibility for python 2 and python 3.8. Supported python versions: 3.9, 3.10, 3.11, 3.12, 3.13
- [Python] Removed installation of `gherkin` script. It was used for internal acceptance tests only.


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

[Unreleased]: https://github.com/cucumber/gherkin/compare/v29.0.0...HEAD
[Unreleased]: https://github.com/cucumber/gherkin/compare/v30.0.0...HEAD
[30.0.0]: https://github.com/cucumber/gherkin/compare/v29.0.0...v30.0.0
[29.0.0]: https://github.com/cucumber/gherkin/compare/v28.0.0...v29.0.0
[28.0.0]: https://github.com/cucumber/gherkin/compare/v27.0.0...v28.0.0
[27.0.0]: https://github.com/cucumber/gherkin/compare/v26.2.0...v27.0.0
Expand Down
2 changes: 1 addition & 1 deletion c/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
29.0.0
30.0.0
8 changes: 4 additions & 4 deletions dotnet/Gherkin/Gherkin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<PropertyGroup Label="Version">
<VersionNumber>29.0.0</VersionNumber>
<VersionNumber>30.0.0</VersionNumber>
<Version Condition="'$(SnapshotSuffix)' != ''">$(VersionNumber)-$(SnapshotSuffix)</Version>
<Version Condition="'$(SnapshotSuffix)' == ''">$(VersionNumber)</Version>
</PropertyGroup>
Expand All @@ -19,7 +19,7 @@
<Product>Gherkin Parser</Product>
<PackageId>Gherkin</PackageId>
<Authors>Cucumber Ltd, Gaspar Nagy</Authors>
<Copyright>Copyright © Cucumber Ltd, Gaspar Nagy</Copyright>
<Copyright>Copyright &#xA9; Cucumber Ltd, Gaspar Nagy</Copyright>
<Description>Cross-platform parser for the Gherkin language, used by Cucumber, SpecFlow and other Cucumber-based tools to parse feature files.</Description>
<PackageTags>specflow gherkin cucumber</PackageTags>
<PackageProjectUrl>https://github.com/cucumber/gherkin</PackageProjectUrl>
Expand All @@ -33,11 +33,11 @@
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="System.Text.Json" Version="6.0.10" />
<PackageReference Include="System.Text.Json" Version="6.0.10"/>
</ItemGroup>

<ItemGroup>
<EmbeddedResource Include="gherkin-languages.json" />
<EmbeddedResource Include="gherkin-languages.json"/>
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion elixir/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule CucumberGherkin.MixProject do
def project do
[
app: :cucumber_gherkin,
version: "29.0.0",
version: "30.0.0",
name: "CucumberGherkin",
description: description(),
package: package(),
Expand Down
2 changes: 1 addition & 1 deletion go/gherkin-generate-tokens/gherkin-generate-tokens.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
gherkin "github.com/cucumber/gherkin/go/v29"
gherkin "github.com/cucumber/gherkin/go/v30"
"io"
"os"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion go/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/cucumber/gherkin/go/v29
module github.com/cucumber/gherkin/go/v30

require (
github.com/cucumber/messages/go/v24 v24.1.0
Expand Down
2 changes: 1 addition & 1 deletion go/main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"encoding/json"
"flag"
"fmt"
gherkin "github.com/cucumber/gherkin/go/v29"
gherkin "github.com/cucumber/gherkin/go/v30"
"github.com/cucumber/messages/go/v24"
"os"
)
Expand Down
6 changes: 3 additions & 3 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@
<version>4.2.0</version>
</parent>
<artifactId>gherkin</artifactId>
<version>29.0.1-SNAPSHOT</version>
<version>30.0.0</version>
<packaging>jar</packaging>
<name>Gherkin</name>
<description>Gherkin parser</description>
<url>https://github.com/cucumber/gherkin</url>

<properties>
<project.build.outputTimestamp>1723455193</project.build.outputTimestamp>
<project.build.outputTimestamp>1729755106</project.build.outputTimestamp>
<project.Automatic-Module-Name>io.cucumber.gherkin</project.Automatic-Module-Name>
</properties>

<scm>
<connection>scm:git:git://github.com/cucumber/gherkin.git</connection>
<developerConnection>scm:git:[email protected]:cucumber/gherkin.git</developerConnection>
<url>git://github.com/cucumber/gherkin.git</url>
<tag>HEAD</tag>
<tag>v30.0.0</tag>
</scm>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion javascript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cucumber/gherkin",
"version": "29.0.0",
"version": "30.0.0",
"description": "Gherkin parser",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion perl/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
29.0.0
30.0.0
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "gherkin-official"
version = "29.0.0"
version = "30.0.0"
description = "Gherkin parser (official, by Cucumber team)"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion ruby/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
29.0.0
30.0.0

0 comments on commit c07ce86

Please sign in to comment.