Skip to content

Commit

Permalink
Release gherkin-utils v8.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cukebot committed May 31, 2022
1 parent b8f0510 commit be4d2d7
Show file tree
Hide file tree
Showing 7 changed files with 114 additions and 36 deletions.
2 changes: 1 addition & 1 deletion fake-cucumber/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"@cucumber/cucumber-expressions": "^15.0.0",
"@cucumber/gherkin": "^24.0.0",
"@cucumber/gherkin-streams": "^5.0.1",
"@cucumber/gherkin-utils": "^7.0.0",
"@cucumber/gherkin-utils": "^8.0.0",
"@cucumber/message-streams": "^4.0.1",
"@cucumber/messages": "^19.0.0",
"@cucumber/tag-expressions": "^4.1.0",
Expand Down
10 changes: 9 additions & 1 deletion gherkin-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Fixed

## [8.0.0] - 2022-05-31

### Changed

* Upgrade to `@cucumber/messages` `19.0.0`
* Upgrade to `@cucumber/gherkin` `24.0.0`

## [7.0.0] - 2021-09-01

### Added
Expand Down Expand Up @@ -118,7 +125,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
* First release

<!-- Releases -->
[Unreleased]: https://github.com/cucumber/cucumber/compare/gherkin-utils/v7.0.0...main
[Unreleased]: https://github.com/cucumber/cucumber/compare/gherkin-utils/v8.0.0...main
[8.0.0]: https://github.com/cucumber/cucumber/compare/gherkin-utils/v7.0.0...gherkin-utils/v8.0.0
[7.0.0]: https://github.com/cucumber/cucumber/compare/gherkin-utils/v6.0.0...gherkin-utils/v7.0.0
[6.0.0]: https://github.com/cucumber/cucumber/compare/gherkin-utils/v5.1.0...gherkin-utils/v6.0.0
[5.1.0]: https://github.com/cucumber/cucumber/compare/gherkin-utils/v5.0.2...gherkin-utils/v5.1.0
Expand Down
32 changes: 11 additions & 21 deletions gherkin-utils/java/pom.xml
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.cucumber</groupId>

<parent>
<groupId>io.cucumber</groupId>
<artifactId>cucumber-parent</artifactId>
<version>3.0.0</version>
</parent>

<artifactId>gherkin-utils</artifactId>
<version>22.0.0</version>
<version>8.0.0</version>
<packaging>jar</packaging>
<name>Gherkin Utils</name>
<description>Gherkin utils for doing things such as walking a Gherkin tree or pretty printing Gherkin files.
</description>
<url>https://github.com/cucumber/common</url>

<properties>
<project.Automatic-Module-Name>io.cucumber.gherkin-utils</project.Automatic-Module-Name>
<project.Automatic-Module-Name>io.cucumber.gherkin.utils</project.Automatic-Module-Name>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
</properties>
Expand All @@ -28,7 +33,7 @@
<dependency>
<groupId>io.cucumber</groupId>
<artifactId>gherkin</artifactId>
<version>24.0.1-SNAPSHOT</version>
<version>[24.0.0,25.0.0)</version>
</dependency>

<dependency>
Expand All @@ -38,19 +43,4 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.2</version>
</plugin>
</plugins>
</build>

</project>
4 changes: 2 additions & 2 deletions gherkin-utils/javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cucumber/gherkin-utils",
"version": "7.0.0",
"version": "8.0.0",
"description": "Various Gherkin utilities",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand All @@ -27,7 +27,7 @@
"devDependencies": {
"@cucumber/gherkin": "^24.0.0",
"@cucumber/gherkin-streams": "^5.0.1",
"@cucumber/message-streams": "^4.0.0",
"@cucumber/message-streams": "^4.0.1",
"@types/mocha": "9.1.1",
"@types/node": "16.11.36",
"fast-glob": "3.2.11",
Expand Down
2 changes: 1 addition & 1 deletion json-to-messages/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"@cucumber/fake-cucumber": "^15.0.0",
"@cucumber/gherkin": "^24.0.0",
"@cucumber/gherkin-streams": "^5.0.1",
"@cucumber/gherkin-utils": "^7.0.0",
"@cucumber/gherkin-utils": "^8.0.0",
"@cucumber/message-streams": "^4.0.1",
"@cucumber/messages": "^19.0.0",
"commander": "9.3.0",
Expand Down
98 changes: 89 additions & 9 deletions 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 query/javascript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"@cucumber/fake-cucumber": "^15.0.0",
"@cucumber/gherkin": "^24.0.0",
"@cucumber/gherkin-streams": "^5.0.1",
"@cucumber/gherkin-utils": "^7.0.0",
"@cucumber/gherkin-utils": "^8.0.0",
"@types/mocha": "9.1.1",
"@types/node": "16.11.36",
"mocha": "10.0.0",
Expand Down

0 comments on commit be4d2d7

Please sign in to comment.