Skip to content

Commit

Permalink
Prepare release v17.0.0
Browse files Browse the repository at this point in the history
Created-by: polyglot-release v1.3.2
  • Loading branch information
luke-hill committed Oct 6, 2023
1 parent 41af47e commit ea5aed7
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 14 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [17.0.0] - 2023-10-06
### Changed
- [JavaScript] Added TypeScript source to the package ([#211](https://github.com/cucumber/cucumber-expressions/pull/211))
- [Ruby] Minimum supported ruby is now 2.5+ ([#232](https://github.com/cucumber/cucumber-expressions/pull/232))
- [Ruby] Large suite wide refactor for basic rubocop compliance ([#233](https://github.com/cucumber/cucumber-expressions/pull/233) [#235](https://github.com/cucumber/cucumber-expressions/pull/235))
- Expose `transformer` arg as a public reader
- Remove `prefer_for_regexp_match?` and `use_for_snippets?` -> Use their reader equivalents instead (Remove the `?`)
([#234](https://github.com/cucumber/cucumber-expressions/pull/234))
- [Ruby] Change public API readers for `ParameterType`
- Expose `transformer` arg as a public reader
- Remove `prefer_for_regexp_match?` and `use_for_snippets?` -> Use their reader equivalents instead (Remove the `?`)
([#234](https://github.com/cucumber/cucumber-expressions/pull/234))

## [16.1.2] - 2023-01-17
### Fixed
Expand Down Expand Up @@ -739,7 +741,8 @@ by [brasmusson](https://github.com/brasmusson))
### Added
- First stable release!

[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v16.1.2...HEAD
[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v17.0.0...HEAD
[17.0.0]: https://github.com/cucumber/cucumber-expressions/compare/v16.1.2...v17.0.0
[16.1.2]: https://github.com/cucumber/cucumber-expressions/compare/v16.1.1...v16.1.2
[16.1.1]: https://github.com/cucumber/cucumber-expressions/compare/v16.1.0...v16.1.1
[16.1.0]: https://github.com/cucumber/cucumber-expressions/compare/v16.0.1...v16.1.0
Expand Down
2 changes: 1 addition & 1 deletion dotnet/CucumberExpressions/CucumberExpressions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup Label="Version">
<VersionNumber>16.1.2</VersionNumber>
<VersionNumber>17.0.0</VersionNumber>
<Version Condition="'$(SnapshotSuffix)' != ''">$(VersionNumber)-$(SnapshotSuffix)</Version>
<Version Condition="'$(SnapshotSuffix)' == ''">$(VersionNumber)</Version>
</PropertyGroup>
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/cucumber-expressions/go/v16
module github.com/cucumber/cucumber-expressions/go/v17

require (
github.com/stretchr/testify v1.8.4
Expand Down
6 changes: 3 additions & 3 deletions java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
</parent>

<artifactId>cucumber-expressions</artifactId>
<version>16.1.3-SNAPSHOT</version>
<version>17.0.0</version>
<packaging>jar</packaging>
<name>Cucumber Expressions</name>
<description>Cucumber Expressions are simple patterns for matching Step Definitions with Gherkin steps</description>
<url>https://github.com/cucumber/cucumber-expressions-java</url>

<properties>
<project.build.outputTimestamp>1673978444</project.build.outputTimestamp>
<project.build.outputTimestamp>1696599359</project.build.outputTimestamp>
<project.Automatic-Module-Name>io.cucumber.cucumberexpressions</project.Automatic-Module-Name>
</properties>

<scm>
<connection>scm:git:git://github.com/cucumber/cucumber-expressions.git</connection>
<developerConnection>scm:git:git@github.com:cucumber/cucumber-expressions.git</developerConnection>
<url>git://github.com/cucumber/cucumber-expressions.git</url>
<tag>HEAD</tag>
<tag>v17.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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cucumber/cucumber-expressions",
"version": "16.1.2",
"version": "17.0.0",
"description": "Cucumber Expressions - a simpler alternative to Regular Expressions",
"type": "module",
"main": "dist/cjs/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cucumber-expressions"
version = "16.1.2"
version = "17.0.0"
description = "Cucumber Expressions - a simpler alternative to Regular Expressions"
authors = ["Jason Allen <jsa34@noreply.github.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion ruby/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.1.2
17.0.0

0 comments on commit ea5aed7

Please sign in to comment.