Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
mpkorstanje authored Aug 15, 2024
2 parents 73a03b6 + 87213be commit 99392ac
Show file tree
Hide file tree
Showing 25 changed files with 46 additions and 45 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +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
- [Ruby] Upgraded messages support to permit up to v26
- [.NET] Drop unsupported frameworks. Now supported target frameworks are .NET 8, .NET Framework 4.6.2, .NET Standard 2.0

## [29.0.0] - 2024-08-12
### Added
- (i18n) Added Gujarati translation for "Rule" ([#249](https://github.com/cucumber/gherkin/pull/249))
- [Ruby] Skeleton to begin technical refactor of internals ([#259](https://github.com/cucumber/gherkin/pull/259))

### Changed
- [Java, JavaScript, PHP, Go, Ruby] Upgraded messages to v25
- [Ruby] Update minimum ruby requirement from 2.5 to 3.0 ([#259](https://github.com/cucumber/gherkin/pull/259))

### Fixed
- [.NET] Provide informative exception for trailing escapes in tables ([#245](https://github.com/cucumber/gherkin/pull/245))
- [Perl] Provide informative exception for trailing escapes in tables ([#245](https://github.com/cucumber/gherkin/pull/245))
Expand All @@ -19,12 +28,12 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
- (i18n) Provide trailing space in Irish step keywords ([#243](https://github.com/cucumber/gherkin/pull/243))
- (i18n) Provide trailing space in Korean step keywords ([#254](https://github.com/cucumber/gherkin/pull/254))
- (i18n) Tamil "And" and "But" translations should have single trailing space ([#243](https://github.com/cucumber/gherkin/pull/243))
- (i18n) Remove duplicate scenario keyword from "sr-Cyrl" ([#264](https://github.com/cucumber/gherkin/pull/264))
- Intermittent failure of cpp test jobs in CI ([#217](https://github.com/cucumber/gherkin/issues/217))

### Changed
- [Java, JavaScript, PHP, Go, Ruby] Upgraded messages to v25
- [Ruby] Update minimum ruby requirement from 2.5 to 3.0 ([#259](https://github.com/cucumber/gherkin/pull/259))
- [.NET] Drop unsupported frameworks. Now supported target frameworks are .NET 8, .NET Framework 4.6.2, .NET Standard 2.0

## [28.0.0] - 2024-02-15
### Added
Expand Down Expand Up @@ -666,7 +675,8 @@ This document is formatted according to the principles of [Keep A CHANGELOG](htt
### Changed
- First release

[Unreleased]: https://github.com/cucumber/gherkin/compare/v28.0.0...HEAD
[Unreleased]: https://github.com/cucumber/gherkin/compare/v29.0.0...HEAD
[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
[26.2.0]: https://github.com/cucumber/gherkin/compare/v26.1.0...v26.2.0
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ pass!
Then send us a pull-request :-)

And if you're stuck - please shoot message to the #commiters channel in the
[CucumberBDD Slack](https://cucumberbdd-slack-invite.herokuapp.com/) <sup>[direct link](https://cucumberbdd.slack.com/)</sup>.
[Cucumber Discord](https://cucumber.io/docs/community/get-in-touch/#discord).
## Make a release
Expand Down
2 changes: 1 addition & 1 deletion c/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
28.0.0
29.0.0
4 changes: 2 additions & 2 deletions c/src/dialect.c
Original file line number Diff line number Diff line change
Expand Up @@ -2935,8 +2935,8 @@ static const Keywords sr_Cyrl_given_keywords = { 4, sr_Cyrl_given_KEYWORDS };
static const wchar_t* const sr_Cyrl_rule_KEYWORDS[] = { L"Правило" };
static const Keywords sr_Cyrl_rule_keywords = { 1, sr_Cyrl_rule_KEYWORDS };

static const wchar_t* const sr_Cyrl_scenario_KEYWORDS[] = { L"Пример", L"Сценарио", L"Пример" };
static const Keywords sr_Cyrl_scenario_keywords = { 3, sr_Cyrl_scenario_KEYWORDS };
static const wchar_t* const sr_Cyrl_scenario_KEYWORDS[] = { L"Сценарио", L"Пример" };
static const Keywords sr_Cyrl_scenario_keywords = { 2, sr_Cyrl_scenario_KEYWORDS };

static const wchar_t* const sr_Cyrl_scenarioOutline_KEYWORDS[] = { L"Структура сценарија", L"Скица", L"Концепт" };
static const Keywords sr_Cyrl_scenarioOutline_keywords = { 3, sr_Cyrl_scenarioOutline_KEYWORDS };
Expand Down
1 change: 0 additions & 1 deletion dart/assets/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
2 changes: 1 addition & 1 deletion dotnet/Gherkin/Gherkin.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup Label="Version">
<VersionNumber>28.0.0</VersionNumber>
<VersionNumber>29.0.0</VersionNumber>
<Version Condition="'$(SnapshotSuffix)' != ''">$(VersionNumber)-$(SnapshotSuffix)</Version>
<Version Condition="'$(SnapshotSuffix)' == ''">$(VersionNumber)</Version>
</PropertyGroup>
Expand Down
1 change: 0 additions & 1 deletion dotnet/Gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
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: "28.0.0",
version: "29.0.0",
name: "CucumberGherkin",
description: description(),
package: package(),
Expand Down
1 change: 0 additions & 1 deletion elixir/priv/gherkin_languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
1 change: 0 additions & 1 deletion gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
1 change: 0 additions & 1 deletion go/dialects_builtin.go

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

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/v28"
gherkin "github.com/cucumber/gherkin/go/v29"
"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/v28
module github.com/cucumber/gherkin/go/v29

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/v28"
gherkin "github.com/cucumber/gherkin/go/v29"
"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,14 +8,14 @@
<version>4.2.0</version>
</parent>
<artifactId>gherkin</artifactId>
<version>28.0.1-SNAPSHOT</version>
<version>29.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Gherkin</name>
<description>Gherkin parser</description>
<url>https://github.com/cucumber/gherkin</url>

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

Expand All @@ -38,7 +38,7 @@
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.3</version>
<version>5.11.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
30 changes: 15 additions & 15 deletions javascript/package-lock.json

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

6 changes: 3 additions & 3 deletions javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cucumber/gherkin",
"version": "28.0.0",
"version": "29.0.0",
"description": "Gherkin parser",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand Down Expand Up @@ -32,10 +32,10 @@
"homepage": "https://github.com/cucumber/gherkin",
"devDependencies": {
"@types/mocha": "10.0.7",
"@types/node": "20.14.14",
"@types/node": "20.14.15",
"commander": "^12.0.0",
"core-js": "3.38.0",
"mocha": "10.7.0",
"mocha": "10.7.3",
"ts-node": "10.9.2",
"typescript": "5.5.4"
},
Expand Down
1 change: 0 additions & 1 deletion javascript/src/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
2 changes: 1 addition & 1 deletion perl/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
28.0.0
29.0.0
1 change: 0 additions & 1 deletion php/resources/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
1 change: 0 additions & 1 deletion python/gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup
setup(name="gherkin-official",
packages=["gherkin", "gherkin.pickles", "gherkin.stream"],
version="28.0.0",
version="29.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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
28.0.0
29.0.0
2 changes: 1 addition & 1 deletion ruby/cucumber-gherkin.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Gem::Specification.new do |s|
'source_code_uri' => 'https://github.com/cucumber/gherkin/blob/main/ruby'
}

s.add_runtime_dependency 'cucumber-messages', '> 25', '< 26'
s.add_runtime_dependency 'cucumber-messages', '> 25', '< 28'

s.add_development_dependency 'rake', '~> 13.1'
s.add_development_dependency 'rspec', '~> 3.13'
Expand Down
1 change: 0 additions & 1 deletion ruby/lib/gherkin/gherkin-languages.json
Original file line number Diff line number Diff line change
Expand Up @@ -3015,7 +3015,6 @@
"Правило"
],
"scenario": [
"Пример",
"Сценарио",
"Пример"
],
Expand Down

0 comments on commit 99392ac

Please sign in to comment.