diff --git a/CHANGELOG.md b/CHANGELOG.md
index 56b902bb..53555c2c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,7 +4,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.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
-## [Unreleased]
+## [3.2.0] - 2024-06-15
### Added
- Add `writeRecord()` to `CsvWriter` to allow writing records field by field
- Allow overwriting the limits of 16K fields per record and 16M characters per field (#104); Thanks to [@Obolrom](https://github.com/Obolrom)!
@@ -117,7 +117,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.1.0...main
+[Unreleased]: https://github.com/osiegmar/FastCSV/compare/v3.2.0...main
+[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
[2.2.2]: https://github.com/osiegmar/FastCSV/compare/v2.2.1...v2.2.2
diff --git a/README.md b/README.md
index 97d4d674..5e584a29 100644
--- a/README.md
+++ b/README.md
@@ -18,5 +18,7 @@
------
- Visit our website at fastcsv.org
+ Visit our website at fastcsv.org for more information.
+
+ Don't forget to leave a :star: if you like FastCSV!
diff --git a/docs/src/content/docs/architecture/goals.md b/docs/src/content/docs/architecture/goals.md
index 0170ba24..9e5d6a42 100644
--- a/docs/src/content/docs/architecture/goals.md
+++ b/docs/src/content/docs/architecture/goals.md
@@ -16,7 +16,7 @@ FastCSV is designed to be blazing fast. It is optimized for reading and writing
FastCSV is designed to be lightweight. It has no external dependencies and ensures a small memory footprint.
-The Jar-File of version 3.1.0 has a size of only 64 KiB!
+The Jar-File of version 3.2.0 has a size of only barely above 64 KiB.
## Compliant
diff --git a/docs/src/content/docs/guides/quickstart.mdx b/docs/src/content/docs/guides/quickstart.mdx
index eeb4fa53..79e1020a 100644
--- a/docs/src/content/docs/guides/quickstart.mdx
+++ b/docs/src/content/docs/guides/quickstart.mdx
@@ -14,14 +14,14 @@ To get started with FastCSV, add the following dependency to your project:
```kotlin
dependencies {
- implementation("com.github.osiegmar:fastcsv:3.1.0")
+ implementation("com.github.osiegmar:fastcsv:3.2.0")
}
```
```groovy
dependencies {
- implementation 'com.github.osiegmar:fastcsv:3.1.0'
+ implementation 'com.github.osiegmar:fastcsv:3.2.0'
}
```
@@ -30,7 +30,7 @@ To get started with FastCSV, add the following dependency to your project:
com.github.osiegmar
fastcsv
- 3.1.0
+ 3.2.0
```
diff --git a/lib/build.gradle.kts b/lib/build.gradle.kts
index f2106677..5dee0e02 100644
--- a/lib/build.gradle.kts
+++ b/lib/build.gradle.kts
@@ -13,7 +13,7 @@ plugins {
}
group = "de.siegmar"
-version = "3.2.0-SNAPSHOT"
+version = "3.2.0"
project.base.archivesName = "fastcsv"
diff --git a/pom.xml b/pom.xml
index c1d1f9d9..afbc779e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,5 +3,5 @@
4.0.0
de.siegmar
fastcsv
- 3.1.0
+ 3.2.0