Skip to content

Commit adf7ebd

Browse files
committed
Update CHANGELOG for v6.6.0
1 parent d3f7956 commit adf7ebd

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

CHANGELOG.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
88
## [Unreleased] (In Git)
99

1010
### Added
11+
12+
### Changed
13+
14+
### Deprecated
15+
16+
### Removed
17+
18+
### Fixed
19+
20+
## [6.6.0] (2020-08-26)
21+
22+
### Added
23+
1124
* Boolean system properties and environment variables (`cucumber.*` and `CUCUMBER_*`)
1225
are strictly parsed. The values `0`, `false`, `no` are interpreted as `false`.
1326
The values `1`, `true`, `yes` are interpreted as `true`. All other values will
@@ -16,14 +29,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1629
[#2097](https://github.com/cucumber/cucumber-jvm/pull/2097)
1730
Aslak Hellesøy)
1831

19-
### Changed
20-
21-
### Deprecated
22-
23-
### Removed
24-
2532
### Fixed
2633

34+
* 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)
35+
2736
## [6.5.1] (2020-08-20)
2837

2938
### Fixed
@@ -1520,7 +1529,8 @@ in `cucumber.api` stable from now on, with proper deprecation warnings in case s
15201529
* First proper release
15211530

15221531
<!-- Releases -->
1523-
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v6.5.1...main
1532+
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v6.6.0...main
1533+
[6.6.0]: https://github.com/cucumber/cucumber-jvm/compare/v6.5.1...v6.6.0
15241534
[6.5.1]: https://github.com/cucumber/cucumber-jvm/compare/v6.5.0...v6.5.1
15251535
[6.5.0]: https://github.com/cucumber/cucumber-jvm/compare/v6.4.0...v6.5.0
15261536
[6.4.0]: https://github.com/cucumber/cucumber-jvm/compare/v6.3.0...v6.4.0

core/src/test/java/io/cucumber/core/options/BooleanStringTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public void null_is_false() {
1616
}
1717

1818
@ParameterizedTest
19-
@ValueSource(strings = { "false", "no", "0"})
19+
@ValueSource(strings = { "false", "no", "0" })
2020
public void falsy_values_are_false(String value) {
2121
assertThat(BooleanString.parseBoolean(value), is(false));
2222
}

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<version>2.1.1</version>
77
</parent>
88
<artifactId>cucumber-jvm</artifactId>
9-
<version>6.5.2-SNAPSHOT</version>
9+
<version>6.6.0-SNAPSHOT</version>
1010
<packaging>pom</packaging>
1111
<name>Cucumber-JVM</name>
1212
<description>Cucumber for the JVM</description>
@@ -37,7 +37,7 @@
3737
<junit-jupiter.version>5.6.2</junit-jupiter.version>
3838
<junit-platform.version>1.6.2</junit-platform.version>
3939
<hamcrest.version>2.2</hamcrest.version>
40-
<mockito.version>3.5.5</mockito.version>
40+
<mockito.version>3.5.6</mockito.version>
4141
<!--Maven plugins-->
4242
<groovy.version>2.5.13</groovy.version>
4343
</properties>

0 commit comments

Comments
 (0)