This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-csv.git
The following commit(s) were added to refs/heads/master by this push:
new 732c2f8b Prepare for the next release candidate
732c2f8b is described below
commit 732c2f8b1ce031384e63e0594cc16a2945528891
Author: Gary D. Gregory <[email protected]>
AuthorDate: Wed Jan 8 13:48:29 2025 +0000
Prepare for the next release candidate
---
README.md | 4 ++--
RELEASE-NOTES.txt | 52 ++++++++++++++++++++++++++++++++++++++++++
src/changes/changes.xml | 2 +-
src/changes/release-notes.vm | 4 +---
src/site/xdoc/download_csv.xml | 26 ++++++++++-----------
5 files changed, 69 insertions(+), 19 deletions(-)
diff --git a/README.md b/README.md
index a864fd1d..969da9b8 100644
--- a/README.md
+++ b/README.md
@@ -45,7 +45,7 @@ Apache Commons CSV
[](https://github.com/apache/commons-csv/actions/workflows/maven.yml)
[](https://search.maven.org/artifact/org.apache.commons/commons-csv)
-[](https://javadoc.io/doc/org.apache.commons/commons-csv/1.12.0)
+[](https://javadoc.io/doc/org.apache.commons/commons-csv/1.13.0)
[](https://github.com/apache/commons-csv/actions/workflows/codeql-analysis.yml)
[](https://api.securityscorecards.dev/projects/github.com/apache/commons-csv)
@@ -68,7 +68,7 @@ Alternatively, you can pull it from the central Maven
repositories:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
- <version>1.12.0</version>
+ <version>1.13.0</version>
</dependency>
```
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 295b0806..36d502e2 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,3 +1,55 @@
+Apache Commons CSV Version 1.13.0 Release Notes
+
+This document contains the release notes for the 1.13.0 version of Apache
Commons CSV.
+Commons CSV reads and writes files in variations of the Comma Separated Value
(CSV) format.
+
+Commons CSV requires at least Java 8.
+
+The Apache Commons CSV library provides a simple interface for reading and
writing CSV files of various types.
+
+This is a feature and maintenance release. Java 8 or later is required.
+
+Changes in this version include:
+
+New Features
+------------
+
+* CSV-313: Add CSVPrinter.getRecordCount(). Thanks to Gary Gregory.
+* Add and use CSVParser.Builder and builder() and deprecate
CSVParser constructors. Thanks to Gary Gregory.
+* CSVFormat.Builder implements Supplier<CSVFormat>. Thanks to Gary
Gregory.
+* Deprecate CSVFormat.Builder.build() for get(). Thanks to Gary
Gregory.
+* CSV-196: Track byte position #502. Thanks to Yuzhan Jiang, Gary Gregory.
+
+Fixed Bugs
+----------
+
+* CSV-314: Required OSGi Import-Package version numbers in MANIFEST.MF #504.
Thanks to Gary Gregory.
+* CSV-314: CSVParser.nextRecord() should throw CSVException (an IOException
subclass) instead of IOException and IllegalStateException, no method signature
changes needed. Thanks to Gary Gregory.
+
+Changes
+-------
+
+* Bump org.apache.commons:commons-parent from 76 to 78 #486, #495.
Thanks to Gary Gregory, Dependabot.
+* Bump org.codehaus.mojo:taglist-maven-plugin from 3.1.0 to 3.2.1
#493. Thanks to Gary Gregory, Dependabot.
+* Bump commons-io:commons-io from 2.17.0 to 2.18.0 #505. Thanks to
Gary Gregory, Dependabot.
+* Bump commons-codec:commons-codec from 1.17.1 to 1.17.2. Thanks to
Gary Gregory.
+* Bump org.apache.commons:commons-parent from 78 to 79. Thanks to
Gary Gregory.
+
+
+Historical list of changes:
https://commons.apache.org/proper/commons-csv/changes-report.html
+
+For complete information on Apache Commons CSV, including instructions on how
to submit bug reports,
+patches, or suggestions for improvement, see the Apache Commons CSV website:
+
+https://commons.apache.org/proper/commons-csv/
+
+Download page: https://commons.apache.org/proper/commons-csv/download_csv.cgi
+
+Have fun!
+-Apache Commons CSV team
+
+------------------------------------------------------------------------------
+
Apache Commons CSV Version 1.12.0 Release Notes
This document contains the release notes for the 1.12.0 version of Apache
Commons CSV.
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 28d03193..f52a2c57 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -40,7 +40,7 @@
<title>Apache Commons CSV Release Notes</title>
</properties>
<body>
- <release version="1.13.0" date="YYYY-MM-DD" description="This is a feature
and maintenance release. Java 8 or later is required.">
+ <release version="1.13.0" date="2025-01-08" description="This is a feature
and maintenance release. Java 8 or later is required.">
<!-- FIX -->
<action type="fix" issue="CSV-314" dev="ggregory" due-to="Gary
Gregory">Required OSGi Import-Package version numbers in MANIFEST.MF
#504.</action>
<action type="fix" issue="CSV-314" dev="ggregory" due-to="Gary
Gregory">CSVParser.nextRecord() should throw CSVException (an IOException
subclass) instead of IOException and IllegalStateException, no method signature
changes needed.</action>
diff --git a/src/changes/release-notes.vm b/src/changes/release-notes.vm
index a10171fc..32fa3cd6 100644
--- a/src/changes/release-notes.vm
+++ b/src/changes/release-notes.vm
@@ -15,9 +15,7 @@
## specific language governing permissions and limitations
## under the License.
##
-${project.name}
-Version ${version}
-Release Notes
+${project.name} Version ${version} Release Notes
This document contains the release notes for the ${version} version of Apache
Commons CSV.
Commons CSV reads and writes files in variations of the Comma Separated Value
(CSV) format.
diff --git a/src/site/xdoc/download_csv.xml b/src/site/xdoc/download_csv.xml
index cc7d90bf..00b7f3c7 100644
--- a/src/site/xdoc/download_csv.xml
+++ b/src/site/xdoc/download_csv.xml
@@ -113,32 +113,32 @@ limitations under the License.
</p>
</subsection>
</section>
- <section name="Apache Commons CSV 1.12.0 (Java 8 or above)">
+ <section name="Apache Commons CSV 1.13.0 (Java 8 or above)">
<subsection name="Binaries">
<table>
<tr>
- <td><a
href="[preferred]/commons/csv/binaries/commons-csv-1.12.0-bin.tar.gz">commons-csv-1.12.0-bin.tar.gz</a></td>
- <td><a
href="https://downloads.apache.org/commons/csv/binaries/commons-csv-1.12.0-bin.tar.gz.sha512">sha512</a></td>
- <td><a
href="https://downloads.apache.org/commons/csv/binaries/commons-csv-1.12.0-bin.tar.gz.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/csv/binaries/commons-csv-1.13.0-bin.tar.gz">commons-csv-1.13.0-bin.tar.gz</a></td>
+ <td><a
href="https://downloads.apache.org/commons/csv/binaries/commons-csv-1.13.0-bin.tar.gz.sha512">sha512</a></td>
+ <td><a
href="https://downloads.apache.org/commons/csv/binaries/commons-csv-1.13.0-bin.tar.gz.asc">pgp</a></td>
</tr>
<tr>
- <td><a
href="[preferred]/commons/csv/binaries/commons-csv-1.12.0-bin.zip">commons-csv-1.12.0-bin.zip</a></td>
- <td><a
href="https://downloads.apache.org/commons/csv/binaries/commons-csv-1.12.0-bin.zip.sha512">sha512</a></td>
- <td><a
href="https://downloads.apache.org/commons/csv/binaries/commons-csv-1.12.0-bin.zip.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/csv/binaries/commons-csv-1.13.0-bin.zip">commons-csv-1.13.0-bin.zip</a></td>
+ <td><a
href="https://downloads.apache.org/commons/csv/binaries/commons-csv-1.13.0-bin.zip.sha512">sha512</a></td>
+ <td><a
href="https://downloads.apache.org/commons/csv/binaries/commons-csv-1.13.0-bin.zip.asc">pgp</a></td>
</tr>
</table>
</subsection>
<subsection name="Source">
<table>
<tr>
- <td><a
href="[preferred]/commons/csv/source/commons-csv-1.12.0-src.tar.gz">commons-csv-1.12.0-src.tar.gz</a></td>
- <td><a
href="https://downloads.apache.org/commons/csv/source/commons-csv-1.12.0-src.tar.gz.sha512">sha512</a></td>
- <td><a
href="https://downloads.apache.org/commons/csv/source/commons-csv-1.12.0-src.tar.gz.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/csv/source/commons-csv-1.13.0-src.tar.gz">commons-csv-1.13.0-src.tar.gz</a></td>
+ <td><a
href="https://downloads.apache.org/commons/csv/source/commons-csv-1.13.0-src.tar.gz.sha512">sha512</a></td>
+ <td><a
href="https://downloads.apache.org/commons/csv/source/commons-csv-1.13.0-src.tar.gz.asc">pgp</a></td>
</tr>
<tr>
- <td><a
href="[preferred]/commons/csv/source/commons-csv-1.12.0-src.zip">commons-csv-1.12.0-src.zip</a></td>
- <td><a
href="https://downloads.apache.org/commons/csv/source/commons-csv-1.12.0-src.zip.sha512">sha512</a></td>
- <td><a
href="https://downloads.apache.org/commons/csv/source/commons-csv-1.12.0-src.zip.asc">pgp</a></td>
+ <td><a
href="[preferred]/commons/csv/source/commons-csv-1.13.0-src.zip">commons-csv-1.13.0-src.zip</a></td>
+ <td><a
href="https://downloads.apache.org/commons/csv/source/commons-csv-1.13.0-src.zip.sha512">sha512</a></td>
+ <td><a
href="https://downloads.apache.org/commons/csv/source/commons-csv-1.13.0-src.zip.asc">pgp</a></td>
</tr>
</table>
</subsection>