Skip to content

Commit

Permalink
Update CHANGELOG for v6.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cukebot committed Mar 8, 2021
1 parent 06e1c08 commit 7298363
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Removed

### Fixed

## [6.10.1] (2021-03-08)

### Fixed
* [Cdi2] Correctly cast the UnmanagedInstance values ([#2242](https://github.com/cucumber/cucumber-jvm/pull/2242), [#2244](https://github.com/cucumber/cucumber-jvm/pull/2244) Daniel Beland)
* [Cdi2] Add step definitions as beans when not discovered ([#2248](https://github.com/cucumber/cucumber-jvm/pull/2248)) Daniel Beland, M.P. Korstanje)
Expand Down Expand Up @@ -1607,7 +1611,8 @@ in `cucumber.api` stable from now on, with proper deprecation warnings in case s
* First proper release

<!-- Releases -->
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v6.10.0...main
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v6.10.1...main
[6.10.1]: https://github.com/cucumber/cucumber-jvm/compare/v6.10.0...v6.10.1
[6.10.0]: https://github.com/cucumber/cucumber-jvm/compare/v6.9.1...v6.10.0
[6.9.1]: https://github.com/cucumber/cucumber-jvm/compare/v6.9.0...v6.9.1
[6.9.0]: https://github.com/cucumber/cucumber-jvm/compare/v6.8.2...v6.9.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ void cant_create_plugin_when_parent_directory_is_a_file() throws IOException {
IllegalArgumentException exception = assertThrows(IllegalArgumentException.class, () -> fc.create(jsonOption));
assertThat(exception.getMessage(), is(equalTo(
"Couldn't create parent directories of '" + jsonReport.toFile().getCanonicalPath() + "'.\n" +
"Make sure the the parent directory '" + jsonReport.getParent().toFile().getCanonicalPath() + "' isn't a file.\n" +
"Make sure the the parent directory '" + jsonReport.getParent().toFile().getCanonicalPath()
+ "' isn't a file.\n" +
"\n" +
"Note: This usually happens when plugins write to colliding paths.\n" +
"For example: 'html:target/cucumber, json:target/cucumber/report.json'\n" +
Expand Down

0 comments on commit 7298363

Please sign in to comment.