Skip to content

Commit

Permalink
Release 15.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Apr 21, 2022
1 parent 0c9b826 commit f42b53a
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 12 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [15.1.0] - 2022-04-21
### Added

- [JavaScript] Add `CucumberExpression.ast` and expose the AST types.
- [JavaScript] Add `CucumberExpression.ast` and expose the AST types.

## [15.0.2] - 2022-03-15
### Fixed
Expand Down Expand Up @@ -699,7 +699,8 @@ by [brasmusson](https://github.com/brasmusson))
### Added
- First stable release!

[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v15.0.2...HEAD
[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v15.1.0...HEAD
[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
[15.0.1]: https://github.com/cucumber/cucumber-expressions/compare/v15.0.0...v15.0.1
[15.0.0]: https://github.com/cucumber/cucumber-expressions/compare/v14.0.0...v15.0.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>15.0.2</VersionNumber>
<VersionNumber>15.1.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/v15.0.2
module github.com/cucumber/cucumber-expressions/go/v15.1.0

require (
github.com/davecgh/go-spew v1.1.1 // indirect
Expand Down
2 changes: 1 addition & 1 deletion 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.0.3-SNAPSHOT</version>
<version>15.1.0</version>
<packaging>jar</packaging>
<name>Cucumber Expressions</name>
<description>Cucumber Expressions are simple patterns for matching Step Definitions with Gherkin steps</description>
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.0.2",
"version": "15.1.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.0.2"
version = "15.1.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.0.2
15.1.0
2 changes: 1 addition & 1 deletion ruby/cucumber-cucumber-expressions.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |s|
}

s.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
s.add_development_dependency 'rspec', '~> 3.10', '>= 3.10.0'
s.add_development_dependency 'rspec', '~> 3.11', '>= 3.11.0'

s.rubygems_version = ">= 1.6.1"
s.files = `git ls-files`.split("\n").reject {|path| path =~ /\.gitignore$/ }
Expand Down

0 comments on commit f42b53a

Please sign in to comment.