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 82389746 Clarifies Java platform requirement 82389746 is described below commit 82389746922e97ac33f752cf7e11f50edc8f8d4e Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Nov 2 08:34:20 2023 -0400 Clarifies Java platform requirement --- RELEASE-NOTES.txt | 6 +++--- pom.xml | 2 +- src/changes/changes.xml | 10 +++++----- src/site/xdoc/download_csv.xml | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 3fcd012f..bbec6a36 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -12,7 +12,7 @@ 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. -Feature and bug fix release (Java 8) +Feature and bug fix release (Java 8 or above) Changes in this version include: @@ -98,7 +98,7 @@ 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. -Feature and bug fix release (Java 8) +Feature and bug fix release (Java 8 or above) Changes in this version include: @@ -264,7 +264,7 @@ Commons CSV reads and writes files in variations of the Comma Separated Value (C The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types. -Feature and bug fix release (Java 8) +Feature and bug fix release (Java 8 or above) Changes in this version include: diff --git a/pom.xml b/pom.xml index b80767d5..be7d0f86 100644 --- a/pom.xml +++ b/pom.xml @@ -151,7 +151,7 @@ <properties> <commons.release.version>1.10.0</commons.release.version> - <commons.release.desc>(Java 8)</commons.release.desc> + <commons.release.desc>(Java 8 or above)</commons.release.desc> <!-- The RC version used in the staging repository URL. --> <commons.rc.version>RC1</commons.rc.version> <commons.bc.version>1.9.0</commons.bc.version> diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 18d4a6a6..190259fd 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.10.1" date="2023-MM-DD" description="Feature and bug fix release (Java 8)"> + <release version="1.10.1" date="2023-MM-DD" description="Feature and bug fix release (Java 8 or above)"> <!-- ADD --> <action issue="CSV-308" type="fix" dev="ggregory" due-to="Buddhi De Silva, Gary Gregory">[Javadoc] Add example to CSVFormat#setHeaderComments() #344.</action> <!-- FIX --> @@ -57,7 +57,7 @@ <action type="update" dev="ggregory" due-to="Gary Gregory">Bump commons-lang3 from 3.12.0 to 3.13.0.</action> <action type="update" dev="ggregory" due-to="Buddhi De Silva, Michael Osipov, Gary Gregory">Update exception message in CSVRecord#getNextRecord() #348.</action> </release> - <release version="1.10.0" date="2023-01-28" description="Feature and bug fix release (Java 8)"> + <release version="1.10.0" date="2023-01-28" description="Feature and bug fix release (Java 8 or above)"> <!-- FIX --> <action type="fix" dev="ggregory" due-to="Arturo Bernal">Minor changes #172.</action> <action issue="CSV-292" type="fix" dev="kinow" due-to="Rob Vesse">No Automatic-Module-Name prevents usage in JPMS projects without repacking the JAR.</action> @@ -103,7 +103,7 @@ <action type="update" dev="ggregory" due-to="Gary Gregory">Bump japicmp-maven-plugin from 0.15.3 to 0.16.0.</action> <action type="update" dev="kinow" due-to="Dependabot">Bump maven-checkstyle-plugin from 3.1.2 to 3.2.0 #253.</action> </release> - <release version="1.9.0" date="2021-07-24" description="Feature and bug fix release (Java 8)"> + <release version="1.9.0" date="2021-07-24" description="Feature and bug fix release (Java 8 or above)"> <!-- FIX --> <action type="fix" dev="ggregory" due-to="Amey Jadiye">Replace FindBugs with SpotBugs #56.</action> <action type="fix" dev="ggregory" due-to="Chen">Javadoc typo in CSVFormat let's -> lets #57.</action> @@ -170,7 +170,7 @@ <action type="update" dev="ggregory" due-to="Dependabot">Bump PMD core from 6.29.0 to 6.36.0.</action> <action type="update" dev="ggregory" due-to="Dependabot">Bump biz.aQute.bnd:biz.aQute.bndlib from 5.1.2 to 5.3.0.</action> </release> - <release version="1.8" date="2020-02-01" description="Feature and bug fix release (Java 8). + <release version="1.8" date="2020-02-01" description="Feature and bug fix release (Java 8 or above). This release fixes serialization compatibility of CSVRecord with versions 1.0 to 1.6. New fields added since 1.7 are not serialized. Support for Serializable is scheduled to be @@ -193,7 +193,7 @@ removed in version 2.0. <action type="update" dev="ggregory" due-to="Chen">Fix typos in site and test #53.</action> <action type="update" dev="ggregory" due-to="Chen">Fix typo performance test #55.</action> </release> - <release version="1.7" date="2019-06-01" description="Feature and bug fix release (Java 8)"> + <release version="1.7" date="2019-06-01" description="Feature and bug fix release (Java 8 or above)"> <action issue="CSV-233" type="add" dev="ggregory" due-to="Gary Gregory">Add predefined CSVFormats for printing MongoDB CSV and TSV.</action> <action issue="CSV-208" type="fix" dev="ggregory" due-to="Jurrie Overgoor">Fix escape character for POSTGRESQL_TEXT and POSTGRESQL_CSV formats.</action> <action issue="CSV-232" type="fix" dev="ggregory" due-to="Jurrie Overgoor, Gary Gregory">Site link "Source Repository" does not work.</action> diff --git a/src/site/xdoc/download_csv.xml b/src/site/xdoc/download_csv.xml index 43fb7469..21d27b67 100644 --- a/src/site/xdoc/download_csv.xml +++ b/src/site/xdoc/download_csv.xml @@ -113,7 +113,7 @@ limitations under the License. </p> </subsection> </section> - <section name="Apache Commons CSV 1.10.0 (Java 8)"> + <section name="Apache Commons CSV 1.10.0 (Java 8 or above)"> <subsection name="Binaries"> <table> <tr>