Skip to content

Commit 2159bec

Browse files
committed
Prepare release v32.0.0
Created-by: polyglot-release v1.6.0
1 parent 10cd3bb commit 2159bec

File tree

14 files changed

+18
-16
lines changed

14 files changed

+18
-16
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
88

99
## [Unreleased]
1010

11+
## [32.0.0] - 2025-02-17
1112
### Changed
1213
- [.NET] Reduce NuGet size by only targeting .NET Standard 2.0
1314
- [.NET] Changed some types from class to struct, removed IGherkinLine interface and changes some functions from Array to Enumerable
@@ -745,7 +746,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
745746
### Changed
746747
- First release
747748

748-
[Unreleased]: https://github.com/cucumber/gherkin/compare/v31.0.0...HEAD
749+
[Unreleased]: https://github.com/cucumber/gherkin/compare/v32.0.0...HEAD
750+
[32.0.0]: https://github.com/cucumber/gherkin/compare/v31.0.0...v32.0.0
749751
[31.0.0]: https://github.com/cucumber/gherkin/compare/v30.0.4...v31.0.0
750752
[30.0.4]: https://github.com/cucumber/gherkin/compare/v30.0.3...v30.0.4
751753
[30.0.3]: https://github.com/cucumber/gherkin/compare/v30.0.2...v30.0.3

c/VERSION

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

cpp/VERSION

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

dotnet/Gherkin/Gherkin.csproj

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

1212
<PropertyGroup Label="Version">
13-
<VersionNumber>31.0.0</VersionNumber>
13+
<VersionNumber>32.0.0</VersionNumber>
1414
<Version Condition="'$(SnapshotSuffix)' != ''">$(VersionNumber)-$(SnapshotSuffix)</Version>
1515
<Version Condition="'$(SnapshotSuffix)' == ''">$(VersionNumber)</Version>
1616
</PropertyGroup>

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: "31.0.0",
9+
version: "32.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/v31"
5+
gherkin "github.com/cucumber/gherkin/go/v32"
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/v31
1+
module github.com/cucumber/gherkin/go/v32
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/v31"
12+
gherkin "github.com/cucumber/gherkin/go/v32"
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>31.0.1-SNAPSHOT</version>
11+
<version>32.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>1738172320</project.build.outputTimestamp>
18+
<project.build.outputTimestamp>1739782957</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>v32.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": "31.0.0",
3+
"version": "32.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-
31.0.0
1+
32.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 = "31.0.0"
7+
version = "32.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-
31.0.0
1+
32.0.0

0 commit comments

Comments
 (0)