Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .buildspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
groupId=de.siegmar
artifactId=fastcsv
version=4.3.0 # x-release-please-version
version=4.3.1 # x-release-please-version
gitRepo=https://github.com/osiegmar/FastCSV.git
gitTag=v${version}
tool=gradle
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "4.3.0"
".": "4.3.1"
}
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ 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.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.3.1](https://github.com/osiegmar/FastCSV/compare/v4.3.0...v4.3.1) (2026-06-11)


### Bug Fixes

* detect BOM correctly on short streams in BomInputStream ([9f476b6](https://github.com/osiegmar/FastCSV/commit/9f476b6b2d25a41658ec872cd9f92445cc4f3684))
* prevent ArrayIndexOutOfBoundsException in NamedCsvRecord.findFields ([0a05a0b](https://github.com/osiegmar/FastCSV/commit/0a05a0bcaf6b58c0d5c5486f3abdb3043a6f192a))
* prevent data corruption after seek in IndexedCsvReader with multibyte charsets ([8bbba5a](https://github.com/osiegmar/FastCSV/commit/8bbba5a0f9c98d4a59de7de98d98824e4fccd0ff))
* prevent skipLine from resurrecting an unterminated last line at EOF ([8ec907b](https://github.com/osiegmar/FastCSV/commit/8ec907bb7005ae0723fe4ada71a554832894f019))
* reject non-ASCII-compatible charsets in IndexedCsvReader ([0e18741](https://github.com/osiegmar/FastCSV/commit/0e1874136f0dce78b4fa816cdfd3544427548bfd))

## [4.3.0](https://github.com/osiegmar/FastCSV/compare/v4.2.0...v4.3.0) (2026-05-09)


Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "de.siegmar"
version = "4.4.0-SNAPSHOT" // x-release-please-version
version = "4.3.1" // x-release-please-version

subprojects {
group = rootProject.group
Expand Down
2 changes: 1 addition & 1 deletion docs/src/content/docs/guides/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ sidebar:

import {Tabs, TabItem, LinkCard, Code} from '@astrojs/starlight/components';

export const version = "4.3.0"; // x-release-please-version
export const version = "4.3.1"; // x-release-please-version

## Declare dependency

Expand Down