Skip to content

Commit

Permalink
Prepare release v15.2.0
Browse files Browse the repository at this point in the history
Created-by: polyglot-release v-develop
  • Loading branch information
aslakhellesoy committed May 24, 2022
1 parent 61d3332 commit b811524
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 14 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Fixed
- [.NET] Fix casing in "word" parameter type constant

## [15.2.0] - 2022-05-24
### Added
- [JavaScript] Add `ParameterInfo` ([#124](https://github.com/cucumber/cucumber-expressions/pull/124))

### Fixed
- [.NET] Fix casing in "word" parameter type constant

## [15.1.1] - 2022-04-21
### Fixed
- [JavaScript] Make `CucumberExpression.ast` public (it was accidentally private in 15.1.0)
Expand Down Expand Up @@ -708,7 +710,8 @@ by [brasmusson](https://github.com/brasmusson))
### Added
- First stable release!

[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v15.1.1...HEAD
[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v15.2.0...HEAD
[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
[15.0.2]: https://github.com/cucumber/cucumber-expressions/compare/v15.0.1...v15.0.2
Expand Down
6 changes: 3 additions & 3 deletions dotnet/CucumberExpressions/CucumberExpressions.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
Expand All @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup Label="Version">
<VersionNumber>15.1.1</VersionNumber>
<VersionNumber>15.2.0</VersionNumber>
<Version Condition="'$(SnapshotSuffix)' != ''">$(VersionNumber)-$(SnapshotSuffix)</Version>
<Version Condition="'$(SnapshotSuffix)' == ''">$(VersionNumber)</Version>
</PropertyGroup>
Expand All @@ -18,7 +18,7 @@
<Product>Cucumber Expressions</Product>
<PackageId>Cucumber.CucumberExpressions</PackageId>
<Authors>Cucumber Ltd, Gaspar Nagy</Authors>
<Copyright>Copyright © Cucumber Ltd, Gaspar Nagy</Copyright>
<Copyright>Copyright &#xA9; Cucumber Ltd, Gaspar Nagy</Copyright>
<Description>Cucumber Expressions implementation for .NET.</Description>
<PackageTags>specflow cucumber</PackageTags>
<PackageProjectUrl>https://github.com/cucumber/cucumber-expressions/tree/main/dotnet</PackageProjectUrl>
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/v15.1.1
module github.com/cucumber/cucumber-expressions/go/v15.2.0

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

<artifactId>cucumber-expressions</artifactId>
<version>15.1.1</version>
<version>15.2.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>v15.2.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": "15.1.1",
"version": "15.2.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 = "15.1.1"
version = "15.2.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 @@
15.1.1
15.2.0

0 comments on commit b811524

Please sign in to comment.