Skip to content

Commit 5cbd5d8

Browse files
committed
Release 13.1.1
1 parent e24f578 commit 5cbd5d8

File tree

5 files changed

+12
-14
lines changed

5 files changed

+12
-14
lines changed

CHANGELOG.md

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [13.1.1] - 2021-09-24
11+
### Fixed
12+
- Fix misc release actions
13+
1014
## [13.1.0] - 2021-09-24
1115
### Added
1216
- [JavaScript] Support for EcmaScript modules (aka ESM).
1317
([#1743](https://github.com/cucumber/common/pull/1743))
1418

15-
### Changed
16-
17-
### Deprecated
18-
19-
### Fixed
20-
21-
### Removed
22-
2319
## [13.0.1] - 2021-09-15
2420
### Changed
2521
- Remove dependency on Node.js APIs (`util` module)
@@ -270,8 +266,8 @@ Use `ExpressionFactory#create_expression` instead.
270266
### Fixed
271267
- Allow parameter-types in escaped optional groups
272268
([#572](https://github.com/cucumber/cucumber/pull/572),
273-
[#561](https://github.com/cucumber/cucumber/pull/561)
274-
[luke-hill](https://github.com/luke-hill), [jaysonesmith](https://github.com/jaysonesmith), [mpkorstanje](https://github.com/mpkorstanje))
269+
[#561](https://github.com/cucumber/cucumber/pull/561)
270+
[luke-hill](https://github.com/luke-hill), [jaysonesmith](https://github.com/jaysonesmith), [mpkorstanje](https://github.com/mpkorstanje))
275271
- Prefer expression with the longest non-empty match #580
276272
([#580](https://github.com/cucumber/cucumber/pull/580),
277273
[#575](https://github.com/cucumber/cucumber/issues/575)
@@ -664,7 +660,8 @@ by [brasmusson](https://github.com/brasmusson))
664660
### Added
665661
- First stable release!
666662

667-
[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v13.1.0...main
663+
[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v13.1.1...main
664+
[13.1.1]: https://github.com/cucumber/cucumber-expressions/compare/v13.1.0...v13.1.1
668665
[13.1.0]: https://github.com/cucumber/cucumber-expressions/compare/v13.0.1...v13.1.0
669666
[13.0.1]: https://github.com/cucumber/cucumber-expressions/compare/v12.1.3...v13.0.1
670667
[12.1.3]: https://github.com/cucumber/cucumber-expressions/compare/v12.1.2...v12.1.3

RELEASING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ To make these steps easier, you can use the [`changelog`](https://github.com/cuc
1717
1. Modify the changelog:
1818
```
1919
changelog release $next_release -o CHANGELOG.md
20+
# You may have to manually fix the links at the bottom due to a bug in the changelog command
2021
```
2122
* If you don't have `changelog` installed, do it manually:
2223
* Under `[Unreleased]` at the top, add a new `[${version}] - ${YYYY-mm-dd}` header

java/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</parent>
1010

1111
<artifactId>cucumber-expressions</artifactId>
12-
<version>13.1.0-SNAPSHOT</version>
12+
<version>13.1.1-SNAPSHOT</version>
1313
<packaging>jar</packaging>
1414
<name>Cucumber Expressions</name>
1515
<description>Cucumber Expressions are simple patterns for matching Step Definitions with Gherkin steps</description>

javascript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cucumber/cucumber-expressions",
3-
"version": "13.1.0",
3+
"version": "13.1.1",
44
"description": "Cucumber Expressions - a simpler alternative to Regular Expressions",
55
"type": "module",
66
"main": "dist/cjs/src/index.js",

ruby/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
13.1.0
1+
13.1.1

0 commit comments

Comments
 (0)