Skip to content

Commit

Permalink
Update CHANGELOG for v6.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cbliard committed Aug 26, 2020
1 parent d3f7956 commit adf7ebd
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 10 deletions.
24 changes: 17 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased] (In Git)

### Added

### Changed

### Deprecated

### Removed

### Fixed

## [6.6.0] (2020-08-26)

### Added

* Boolean system properties and environment variables (`cucumber.*` and `CUCUMBER_*`)
are strictly parsed. The values `0`, `false`, `no` are interpreted as `false`.
The values `1`, `true`, `yes` are interpreted as `true`. All other values will
Expand All @@ -16,14 +29,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
[#2097](https://github.com/cucumber/cucumber-jvm/pull/2097)
Aslak Hellesøy)

### Changed

### Deprecated

### Removed

### Fixed

* Issue a PUT request after a GET request responding with 202 and a Location header ([#2099](https://github.com/cucumber/cucumber-jvm/pull/2099) Aslak Hellesøy)

## [6.5.1] (2020-08-20)

### Fixed
Expand Down Expand Up @@ -1520,7 +1529,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.5.1...main
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v6.6.0...main
[6.6.0]: https://github.com/cucumber/cucumber-jvm/compare/v6.5.1...v6.6.0
[6.5.1]: https://github.com/cucumber/cucumber-jvm/compare/v6.5.0...v6.5.1
[6.5.0]: https://github.com/cucumber/cucumber-jvm/compare/v6.4.0...v6.5.0
[6.4.0]: https://github.com/cucumber/cucumber-jvm/compare/v6.3.0...v6.4.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public void null_is_false() {
}

@ParameterizedTest
@ValueSource(strings = { "false", "no", "0"})
@ValueSource(strings = { "false", "no", "0" })
public void falsy_values_are_false(String value) {
assertThat(BooleanString.parseBoolean(value), is(false));
}
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<version>2.1.1</version>
</parent>
<artifactId>cucumber-jvm</artifactId>
<version>6.5.2-SNAPSHOT</version>
<version>6.6.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Cucumber-JVM</name>
<description>Cucumber for the JVM</description>
Expand Down Expand Up @@ -37,7 +37,7 @@
<junit-jupiter.version>5.6.2</junit-jupiter.version>
<junit-platform.version>1.6.2</junit-platform.version>
<hamcrest.version>2.2</hamcrest.version>
<mockito.version>3.5.5</mockito.version>
<mockito.version>3.5.6</mockito.version>
<!--Maven plugins-->
<groovy.version>2.5.13</groovy.version>
</properties>
Expand Down

0 comments on commit adf7ebd

Please sign in to comment.