Skip to content

Commit f379ac7

Browse files
Release 13.1.2
1 parent 07f21af commit f379ac7

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [13.1.2] - 2021-09-24
11+
### Fixed
12+
- Fix release for the Go implementation
13+
- Minor fixes in the README.md links to documentation
14+
1015
## [13.1.1] - 2021-09-24
1116
### Fixed
1217
- Fix misc release actions
@@ -660,7 +665,8 @@ by [brasmusson](https://github.com/brasmusson))
660665
### Added
661666
- First stable release!
662667

663-
[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v13.1.1...main
668+
[Unreleased]: https://github.com/cucumber/cucumber-expressions/compare/v13.1.2...main
669+
[13.1.2]: https://github.com/cucumber/cucumber-expressions/compare/v13.1.1...v13.1.2
664670
[13.1.1]: https://github.com/cucumber/cucumber-expressions/compare/v13.1.0...v13.1.1
665671
[13.1.0]: https://github.com/cucumber/cucumber-expressions/compare/v13.0.1...v13.1.0
666672
[13.0.1]: https://github.com/cucumber/cucumber-expressions/compare/v12.1.3...v13.0.1

RELEASING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ To make these steps easier, you can use the [`changelog`](https://github.com/cuc
1212
* Look at `CHANGELOG.md` to see what has changed since the last relesase
1313
* Use [semver](https://semver.org/) to pick a version for the next release.
1414
```
15-
read $next_release
15+
export next_release=x.y.z
1616
```
1717
1. Modify the changelog:
1818
```
@@ -24,7 +24,7 @@ To make these steps easier, you can use the [`changelog`](https://github.com/cuc
2424
* Add a new `[${version}]` link at the bottom
2525
* Update the `[Unreleased]` link at the bottom
2626
1. Update the version numbers in package descriptors:
27-
* `java/pom.xml` (`${version}-SNAPSHOT`)
27+
* `java/pom.xml` (keep the `-SNAPSHOT` suffix)
2828
* `javascript/package.json`
2929
* `ruby/VERSION`
3030
1. Commit and push

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.1-SNAPSHOT</version>
12+
<version>13.1.2-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.1",
3+
"version": "13.1.2",
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.1
1+
13.1.2

0 commit comments

Comments
 (0)