Skip to content

Commit

Permalink
Prepare release v16.0.0
Browse files Browse the repository at this point in the history
Created-by: polyglot-release v1.0.0
  • Loading branch information
aslakhellesoy committed Jun 12, 2022
1 parent e7974b5 commit 636896c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 10 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Expand Up @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [16.0.0] - 2022-06-12
### Changed
- [JavaScript] The `ParameterType` constructor's `regexps` parameter has a new type: `type Regexps = StringOrRegExp | readonly StringOrRegExp[]; type StringOrRegExp = string | RegExp`.

Expand Down Expand Up @@ -713,7 +714,8 @@ by [brasmusson](https://github.com/brasmusson))
### Added
- First stable release!

[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v15.2.0...HEAD
[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v16.0.0...HEAD
[16.0.0]: https://github.com/cucumber/cucumber-expressions/compare/v15.2.0...v16.0.0
[15.2.0]: https://github.com/cucumber/cucumber-expressions/compare/v15.1.1...v15.2.0
[15.1.1]: https://github.com/cucumber/cucumber-expressions/compare/v15.1.0...v15.1.1
[15.1.0]: https://github.com/cucumber/cucumber-expressions/compare/v15.0.2...v15.1.0
Expand Down
2 changes: 1 addition & 1 deletion dotnet/CucumberExpressions/CucumberExpressions.csproj
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup Label="Version">
<VersionNumber>15.2.0</VersionNumber>
<VersionNumber>16.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
@@ -1,4 +1,4 @@
module github.com/cucumber/cucumber-expressions/go/v15.2.0
module github.com/cucumber/cucumber-expressions/go/v16.0.0

require (
github.com/davecgh/go-spew v1.1.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions java/pom.xml
Expand Up @@ -9,7 +9,7 @@
</parent>

<artifactId>cucumber-expressions</artifactId>
<version>15.2.1-SNAPSHOT</version>
<version>16.0.0</version>
<packaging>jar</packaging>
<name>Cucumber Expressions</name>
<description>Cucumber Expressions are simple patterns for matching Step Definitions with Gherkin steps</description>
Expand All @@ -25,7 +25,7 @@
<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>v16.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/cucumber-expressions",
"version": "15.2.0",
"version": "16.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
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cucumber-expressions"
version = "15.2.0"
version = "16.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
@@ -1 +1 @@
15.2.0
16.0.0

0 comments on commit 636896c

Please sign in to comment.