Skip to content

Commit

Permalink
Prepare release v28.0.0
Browse files Browse the repository at this point in the history
Created-by: polyglot-release v1.3.2
  • Loading branch information
mpkorstanje committed Feb 15, 2024
1 parent 7cb6407 commit 858cb39
Show file tree
Hide file tree
Showing 13 changed files with 24 additions and 21 deletions.
15 changes: 9 additions & 6 deletions CHANGELOG.md
Expand Up @@ -7,17 +7,19 @@ 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]
### Changed
- [Python] Reuse the action cucumber/action-publish-pypi in release ([#220](https://github.com/cucumber/gherkin/pull/220))
- [Python] Removed duplicate code in markdown token matcher ([#205](https://github.com/cucumber/gherkin/pull/205))
- [Java, JavaScript, PHP, Go, Ruby] Upgraded messages to v24
- Upgraded messages to v22

## [28.0.0] - 2024-02-15
### Added
- [Python] Added release workflow for releasing to Pypi ([#213](https://github.com/cucumber/gherkin/pull/213))
- (i18n) Added Vietnamese translation of "Rule" ([#204](https://github.com/cucumber/gherkin/pull/204))
- (i18n) Added Irish translation of "Rule" ([#216](https://github.com/cucumber/gherkin/pull/216))

### Changed
- [Python] Reuse the action cucumber/action-publish-pypi in release ([#220](https://github.com/cucumber/gherkin/pull/220))
- [Python] Removed duplicate code in markdown token matcher ([#205](https://github.com/cucumber/gherkin/pull/205))
- [Java, JavaScript, PHP, Go, Ruby] Upgraded messages to v24
- Upgraded messages to v22

## [27.0.0] - 2023-09-15
### Added
- (i18n) Added Malayalam localization
Expand Down Expand Up @@ -647,7 +649,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
### Changed
- First release

[Unreleased]: https://github.com/cucumber/gherkin/compare/v27.0.0...HEAD
[Unreleased]: https://github.com/cucumber/gherkin/compare/v28.0.0...HEAD
[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
[26.2.0]: https://github.com/cucumber/gherkin/compare/v26.1.0...v26.2.0
[26.1.0]: https://github.com/cucumber/gherkin/compare/v26.0.3...v26.1.0
Expand Down
2 changes: 1 addition & 1 deletion c/VERSION
@@ -1 +1 @@
27.0.0
28.0.0
2 changes: 1 addition & 1 deletion dotnet/Gherkin/Gherkin.csproj
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup Label="Version">
<VersionNumber>27.0.0</VersionNumber>
<VersionNumber>28.0.0</VersionNumber>
<Version Condition="'$(SnapshotSuffix)' != ''">$(VersionNumber)-$(SnapshotSuffix)</Version>
<Version Condition="'$(SnapshotSuffix)' == ''">$(VersionNumber)</Version>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion elixir/mix.exs
Expand Up @@ -6,7 +6,7 @@ defmodule CucumberGherkin.MixProject do
def project do
[
app: :cucumber_gherkin,
version: "27.0.0",
version: "28.0.0",
name: "CucumberGherkin",
description: description(),
package: package(),
Expand Down
2 changes: 1 addition & 1 deletion go/gherkin-generate-tokens/gherkin-generate-tokens.go
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
gherkin "github.com/cucumber/gherkin/go/v27"
gherkin "github.com/cucumber/gherkin/go/v28"
"io"
"os"
"strings"
Expand Down
2 changes: 1 addition & 1 deletion go/go.mod
@@ -1,4 +1,4 @@
module github.com/cucumber/gherkin/go/v27
module github.com/cucumber/gherkin/go/v28

require (
github.com/cucumber/messages/go/v24 v24.0.1
Expand Down
2 changes: 1 addition & 1 deletion go/main/main.go
Expand Up @@ -9,7 +9,7 @@ import (
"encoding/json"
"flag"
"fmt"
gherkin "github.com/cucumber/gherkin/go/v27"
gherkin "github.com/cucumber/gherkin/go/v28"
"github.com/cucumber/messages/go/v24"
"os"
)
Expand Down
6 changes: 3 additions & 3 deletions java/pom.xml
Expand Up @@ -8,22 +8,22 @@
<version>4.2.0</version>
</parent>
<artifactId>gherkin</artifactId>
<version>27.0.1-SNAPSHOT</version>
<version>28.0.0</version>
<packaging>jar</packaging>
<name>Gherkin</name>
<description>Gherkin parser</description>
<url>https://github.com/cucumber/gherkin</url>

<properties>
<project.build.outputTimestamp>1694785446</project.build.outputTimestamp>
<project.build.outputTimestamp>1708027234</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:git@github.com:cucumber/gherkin.git</developerConnection>
<url>git://github.com/cucumber/gherkin.git</url>
<tag>HEAD</tag>
<tag>v28.0.0</tag>
</scm>

<dependencyManagement>
Expand Down
4 changes: 2 additions & 2 deletions 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
@@ -1,6 +1,6 @@
{
"name": "@cucumber/gherkin",
"version": "27.0.0",
"version": "28.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
@@ -1 +1 @@
27.0.0
28.0.0
2 changes: 1 addition & 1 deletion python/setup.py
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup
setup(name="gherkin-official",
packages=["gherkin", "gherkin.pickles", "gherkin.stream"],
version="27.0.0",
version="28.0.0",
description="Gherkin parser (official, by Cucumber team)",
long_description="Gherkin parser (official, by Cucumber team)",
author="Cucumber Ltd and Björn Rasmusson",
Expand Down
2 changes: 1 addition & 1 deletion ruby/VERSION
@@ -1 +1 @@
27.0.0
28.0.0

0 comments on commit 858cb39

Please sign in to comment.