From ee2afecdad01a35ea35129f9a70fec6dc11cd0a0 Mon Sep 17 00:00:00 2001 From: Oliver Siegmar Date: Thu, 19 Sep 2024 21:34:55 +0200 Subject: [PATCH] prepare release --- CHANGELOG.md | 6 +++++- docs/src/content/docs/guides/quickstart.mdx | 6 +++--- lib/build.gradle.kts | 2 +- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d2e7325a..b4b31871 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/docs/src/content/docs/guides/quickstart.mdx b/docs/src/content/docs/guides/quickstart.mdx index 22064afe..52e4a1c0 100644 --- a/docs/src/content/docs/guides/quickstart.mdx +++ b/docs/src/content/docs/guides/quickstart.mdx @@ -15,7 +15,7 @@ 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") } ``` @@ -23,7 +23,7 @@ To get started with FastCSV, add the following dependency to your project: ```groovy // build.gradle dependencies { - implementation 'de.siegmar:fastcsv:3.2.0' + implementation 'de.siegmar:fastcsv:3.3.0' } ``` @@ -33,7 +33,7 @@ To get started with FastCSV, add the following dependency to your project: de.siegmar fastcsv - 3.2.0 + 3.3.0 ``` diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts index 314ff9e5..87e90525 100644 --- a/lib/build.gradle.kts +++ b/lib/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "de.siegmar" -version = "3.3.0-SNAPSHOT" +version = "3.3.0" project.base.archivesName = "fastcsv"