Skip to content

Commit 6bf905b

Browse files
committed
prepare release
1 parent 2491bb1 commit 6bf905b

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [3.6.0] - 2025-03-04
99
### Added
1010
- Configuration of maximum fields, maximum field size, and maximum record size via record handler
1111
- Fluent configuration for `CsvRecordHandler`, `NamedCsvRecordHandler`, and `StringArrayHandler`
@@ -154,7 +154,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
154154

155155
- Initial release
156156

157-
[Unreleased]: https://github.com/osiegmar/FastCSV/compare/v3.5.0...HEAD
157+
[3.6.0]: https://github.com/osiegmar/FastCSV/compare/v3.5.0...v3.6.0
158158
[3.5.0]: https://github.com/osiegmar/FastCSV/compare/v3.4.0...v3.5.0
159159
[3.4.0]: https://github.com/osiegmar/FastCSV/compare/v3.3.1...v3.4.0
160160
[3.3.1]: https://github.com/osiegmar/FastCSV/compare/v3.3.0...v3.3.1

docs/src/content/docs/guides/quickstart.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ To get started with FastCSV, add the following dependency to your project:
1515
```kotlin
1616
// build.gradle.kts
1717
dependencies {
18-
implementation("de.siegmar:fastcsv:3.5.0")
18+
implementation("de.siegmar:fastcsv:3.6.0")
1919
}
2020
```
2121
</TabItem>
2222
<TabItem label="Gradle/Groovy">
2323
```groovy
2424
// build.gradle
2525
dependencies {
26-
implementation 'de.siegmar:fastcsv:3.5.0'
26+
implementation 'de.siegmar:fastcsv:3.6.0'
2727
}
2828
```
2929
</TabItem>
@@ -33,7 +33,7 @@ To get started with FastCSV, add the following dependency to your project:
3333
<dependency>
3434
<groupId>de.siegmar</groupId>
3535
<artifactId>fastcsv</artifactId>
36-
<version>3.5.0</version>
36+
<version>3.6.0</version>
3737
</dependency>
3838
```
3939
</TabItem>

lib/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ plugins {
1313
}
1414

1515
group = "de.siegmar"
16-
version = "3.6.0-SNAPSHOT"
16+
version = "3.6.0"
1717

1818
project.base.archivesName = "fastcsv"
1919

0 commit comments

Comments
 (0)