Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
osiegmar committed Sep 19, 2024
1 parent f5d5a6b commit ee2afec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Nothing yet

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

- Initial release

[Unreleased]: https://github.com/osiegmar/FastCSV/compare/v3.2.0...main
[Unreleased]: https://github.com/osiegmar/FastCSV/compare/v3.3.0...main
[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
[3.1.0]: https://github.com/osiegmar/FastCSV/compare/v3.0.0...v3.1.0
[3.0.0]: https://github.com/osiegmar/FastCSV/compare/v2.2.2...v3.0.0
Expand Down
6 changes: 3 additions & 3 deletions docs/src/content/docs/guides/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ To get started with FastCSV, add the following dependency to your project:
```kotlin
// build.gradle.kts
dependencies {
implementation("de.siegmar:fastcsv:3.2.0")
implementation("de.siegmar:fastcsv:3.3.0")
}
```
</TabItem>
<TabItem label="Gradle/Groovy">
```groovy
// build.gradle
dependencies {
implementation 'de.siegmar:fastcsv:3.2.0'
implementation 'de.siegmar:fastcsv:3.3.0'
}
```
</TabItem>
Expand All @@ -33,7 +33,7 @@ To get started with FastCSV, add the following dependency to your project:
<dependency>
<groupId>de.siegmar</groupId>
<artifactId>fastcsv</artifactId>
<version>3.2.0</version>
<version>3.3.0</version>
</dependency>
```
</TabItem>
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.0-SNAPSHOT"
version = "3.3.0"

project.base.archivesName = "fastcsv"

Expand Down

0 comments on commit ee2afec

Please sign in to comment.