Skip to content

Commit

Permalink
Release 9.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Mar 6, 2022
1 parent dc3b7a7 commit 22e881f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 16 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [9.0.4] - 2022-03-06
### Fixed
- [Java] Make `DetectCiEnvironment.detectCiEnvironment` public

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

[Unreleased]: https://github.com/cucumber/ci-environment/compare/v9.0.3...main
[Unreleased]: https://github.com/cucumber/ci-environment/compare/v9.0.4...main
[9.0.4]: https://github.com/cucumber/ci-environment/compare/v9.0.3...main
[9.0.3]: https://github.com/cucumber/ci-environment/compare/v9.0.2...main
[9.0.2]: https://github.com/cucumber/ci-environment/compare/v9.0.1...main
[9.0.1]: https://github.com/cucumber/ci-environment/compare/v9.0.0...main
Expand Down
2 changes: 1 addition & 1 deletion java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>

<artifactId>ci-environment</artifactId>
<version>9.0.3</version>
<version>9.0.4</version>
<packaging>jar</packaging>
<name>Cucumber CiEnvironment</name>
<description>Detect CI Environment from environment variables</description>
Expand Down
19 changes: 10 additions & 9 deletions javascript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cucumber/ci-environment",
"version": "9.0.3",
"version": "9.0.4",
"description": "Detect CI Environment from environment variables",
"type": "module",
"main": "dist/cjs/src/index.js",
Expand All @@ -25,8 +25,8 @@
"test": "mocha && npm run test:cjs",
"test:cjs": "npm run build:cjs && mocha --no-config dist/cjs/test",
"prepublishOnly": "npm run build",
"eslint-fix": "eslint --ext ts,tsx --max-warnings 0 --fix src test",
"eslint": "eslint --ext ts,tsx --max-warnings 0 src test",
"eslint-fix": "eslint --ext ts --max-warnings 0 --fix src test",
"eslint": "eslint --ext ts --max-warnings 0 src test",
"generate-ci-environments-ts": "shx cat CiEnvironments.ts.header ../CiEnvironments.json > src/CiEnvironments.ts && eslint --fix src/CiEnvironments.ts"
},
"repository": {
Expand Down Expand Up @@ -58,7 +58,7 @@
"mocha": "9.2.1",
"prettier": "2.5.1",
"shx": "0.3.4",
"ts-node": "10.6.0",
"ts-node": "10.7.0",
"typescript": "4.6.2"
},
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion ruby/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.0.3
9.0.4

0 comments on commit 22e881f

Please sign in to comment.