Skip to content

Commit 22e881f

Browse files
committed
Release 9.0.4
1 parent dc3b7a7 commit 22e881f

File tree

5 files changed

+20
-16
lines changed

5 files changed

+20
-16
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
9+
10+
## [9.0.4] - 2022-03-06
911
### Fixed
1012
- [Java] Make `DetectCiEnvironment.detectCiEnvironment` public
1113

@@ -155,7 +157,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
155157
### Added
156158
- First release
157159

158-
[Unreleased]: https://github.com/cucumber/ci-environment/compare/v9.0.3...main
160+
[Unreleased]: https://github.com/cucumber/ci-environment/compare/v9.0.4...main
161+
[9.0.4]: https://github.com/cucumber/ci-environment/compare/v9.0.3...main
159162
[9.0.3]: https://github.com/cucumber/ci-environment/compare/v9.0.2...main
160163
[9.0.2]: https://github.com/cucumber/ci-environment/compare/v9.0.1...main
161164
[9.0.1]: https://github.com/cucumber/ci-environment/compare/v9.0.0...main

java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111

1212
<artifactId>ci-environment</artifactId>
13-
<version>9.0.3</version>
13+
<version>9.0.4</version>
1414
<packaging>jar</packaging>
1515
<name>Cucumber CiEnvironment</name>
1616
<description>Detect CI Environment from environment variables</description>

javascript/package-lock.json

+10-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

javascript/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cucumber/ci-environment",
3-
"version": "9.0.3",
3+
"version": "9.0.4",
44
"description": "Detect CI Environment from environment variables",
55
"type": "module",
66
"main": "dist/cjs/src/index.js",
@@ -25,8 +25,8 @@
2525
"test": "mocha && npm run test:cjs",
2626
"test:cjs": "npm run build:cjs && mocha --no-config dist/cjs/test",
2727
"prepublishOnly": "npm run build",
28-
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix src test",
29-
"eslint": "eslint --ext ts,tsx --max-warnings 0 src test",
28+
"eslint-fix": "eslint --ext ts --max-warnings 0 --fix src test",
29+
"eslint": "eslint --ext ts --max-warnings 0 src test",
3030
"generate-ci-environments-ts": "shx cat CiEnvironments.ts.header ../CiEnvironments.json > src/CiEnvironments.ts && eslint --fix src/CiEnvironments.ts"
3131
},
3232
"repository": {
@@ -58,7 +58,7 @@
5858
"mocha": "9.2.1",
5959
"prettier": "2.5.1",
6060
"shx": "0.3.4",
61-
"ts-node": "10.6.0",
61+
"ts-node": "10.7.0",
6262
"typescript": "4.6.2"
6363
},
6464
"directories": {

ruby/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
9.0.3
1+
9.0.4

0 commit comments

Comments
 (0)