Skip to content

Commit

Permalink
release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
osiegmar committed Jun 15, 2024
1 parent 2a3223c commit 12eda07
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)!
Expand Down Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@
------

<p align="center">
Visit our website at <a href="https://fastcsv.org">fastcsv.org</a>
Visit our website at <a href="https://fastcsv.org">fastcsv.org</a> for more information.
<br><br>
<strong>Don't forget to leave a :star: if you like FastCSV!</strong>
</p>
2 changes: 1 addition & 1 deletion docs/src/content/docs/architecture/goals.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

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 @@ -14,14 +14,14 @@ To get started with FastCSV, add the following dependency to your project:
<TabItem label="Gradle/Kotlin">
```kotlin
dependencies {
implementation("com.github.osiegmar:fastcsv:3.1.0")
implementation("com.github.osiegmar:fastcsv:3.2.0")
}
```
</TabItem>
<TabItem label="Gradle/Groovy">
```groovy
dependencies {
implementation 'com.github.osiegmar:fastcsv:3.1.0'
implementation 'com.github.osiegmar:fastcsv:3.2.0'
}
```
</TabItem>
Expand All @@ -30,7 +30,7 @@ To get started with FastCSV, add the following dependency to your project:
<dependency>
<groupId>com.github.osiegmar</groupId>
<artifactId>fastcsv</artifactId>
<version>3.1.0</version>
<version>3.2.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.2.0-SNAPSHOT"
version = "3.2.0"

project.base.archivesName = "fastcsv"

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.siegmar</groupId>
<artifactId>fastcsv</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
</project>

0 comments on commit 12eda07

Please sign in to comment.