Skip to content

Commit b66d3bb

Browse files
committed
Update CHANGELOG for v6.2.1
1 parent b3763b9 commit b66d3bb

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717

1818
### Fixed
1919

20+
## [6.2.1] (2020-07-07)
21+
22+
### Fixed
23+
- [Core] Follow symlinks when loading feature files ([#2043](https://github.com/cucumber/cucumber-jvm/issues/2043) Andrey Mukamolov)
24+
2025
## [6.2.0] (2020-07-02)
2126

2227
### Changed
@@ -1455,7 +1460,8 @@ in `cucumber.api` stable from now on, with proper deprecation warnings in case s
14551460
* First proper release
14561461

14571462
<!-- Releases -->
1458-
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v6.2.0...main
1463+
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v6.2.1...main
1464+
[6.2.1]: https://github.com/cucumber/cucumber-jvm/compare/v6.2.0...v6.2.1
14591465
[6.2.0]: https://github.com/cucumber/cucumber-jvm/compare/v6.1.2...v6.2.0
14601466
[6.1.2]: https://github.com/cucumber/cucumber-jvm/compare/v6.1.1...v6.1.2
14611467
[6.1.1]: https://github.com/cucumber/cucumber-jvm/compare/v6.1.0...v6.1.1

core/src/main/java/io/cucumber/core/resource/PathScanner.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ void findResourcesForPath(Path path, Predicate<Path> filter, Function<Path, Cons
4646

4747
try {
4848
walkFileTree(path, EnumSet.of(FileVisitOption.FOLLOW_LINKS), Integer.MAX_VALUE,
49-
new ResourceFileVisitor(filter, consumer.apply(path)));
49+
new ResourceFileVisitor(filter, consumer.apply(path)));
5050
} catch (IOException e) {
5151
throw new RuntimeException(e);
5252
}

0 commit comments

Comments
 (0)