Skip to content

Commit

Permalink
prepare 3.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
osiegmar committed Nov 4, 2024
1 parent 93e502b commit d63712f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [3.4.0] - 2024-11-04
### Added
- Add `skipLines(int)` and `skipLines(Predicate<String>, int)` to `CsvReader` to skip lines before the actual CSV data starts

Expand Down Expand Up @@ -132,7 +132,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[Unreleased]: https://github.com/osiegmar/FastCSV/compare/v3.3.1...main
[3.4.0]: https://github.com/osiegmar/FastCSV/compare/v3.3.1...v3.4.0
[3.3.1]: https://github.com/osiegmar/FastCSV/compare/v3.3.0...v3.3.1
[3.3.0]: https://github.com/osiegmar/FastCSV/compare/v3.2.0...v3.3.0
[3.2.0]: https://github.com/osiegmar/FastCSV/compare/v3.1.0...v3.2.0
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

group = "de.siegmar"
version = "3.3.2-SNAPSHOT"
version = "3.4.0"

project.base.archivesName = "fastcsv"

Expand Down
2 changes: 2 additions & 0 deletions lib/src/intTest/java/blackbox/reader/GenericDataTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ static Stream<Arguments> dataProvider() {
.map(spec -> Arguments.of(buildName(spec), spec.testSpecFile().spec(), spec.testSpecCheck()));
}

// use id for the name

private static String buildName(final CheckVariantWrapper spec) {
final var formattedInput = spec.testSpecCheck().variant().data()
.replace("\n", "\\n")
Expand Down

0 comments on commit d63712f

Please sign in to comment.