Skip to content

Commit ee2afec

Browse files
committed
prepare release
1 parent f5d5a6b commit ee2afec

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
- Nothing yet
9+
10+
## [3.3.0] - 2024-09-19
811
### Added
912
- Implement `Flushable` interface for `CsvWriter` to allow flushing the underlying writer
1013
- Implement `autoFlush` option for `CsvWriter` to automatically flush the writer after writing a record
@@ -123,7 +126,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
123126

124127
- Initial release
125128

126-
[Unreleased]: https://github.com/osiegmar/FastCSV/compare/v3.2.0...main
129+
[Unreleased]: https://github.com/osiegmar/FastCSV/compare/v3.3.0...main
130+
[3.3.0]: https://github.com/osiegmar/FastCSV/compare/v3.2.0...v3.3.0
127131
[3.2.0]: https://github.com/osiegmar/FastCSV/compare/v3.1.0...v3.2.0
128132
[3.1.0]: https://github.com/osiegmar/FastCSV/compare/v3.0.0...v3.1.0
129133
[3.0.0]: https://github.com/osiegmar/FastCSV/compare/v2.2.2...v3.0.0

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.2.0")
18+
implementation("de.siegmar:fastcsv:3.3.0")
1919
}
2020
```
2121
</TabItem>
2222
<TabItem label="Gradle/Groovy">
2323
```groovy
2424
// build.gradle
2525
dependencies {
26-
implementation 'de.siegmar:fastcsv:3.2.0'
26+
implementation 'de.siegmar:fastcsv:3.3.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.2.0</version>
36+
<version>3.3.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.3.0-SNAPSHOT"
16+
version = "3.3.0"
1717

1818
project.base.archivesName = "fastcsv"
1919

0 commit comments

Comments
 (0)