Skip to content

Commit 0bbc5be

Browse files
committed
Prepare release 1.3
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1742504 13f79535-47bb-0310-9956-ffa450edef68
1 parent ffb7054 commit 0bbc5be

3 files changed

Lines changed: 92 additions & 25 deletions

File tree

RELEASE-NOTES.txt

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
Apache Commons CSV
2+
Version 1.3
3+
Release Notes
4+
5+
6+
INTRODUCTION:
7+
8+
This document contains the release notes for the 1.3 version of Apache Commons CSV.
9+
Commons CSV reads and writes files in variations of the Comma Separated Value (CSV) format.
10+
11+
CSV requires at least Java 6.
12+
13+
The Apache Commons CSV library provides a simple interface for reading and writing
14+
CSV files of various types.
15+
16+
Feature and bug fix release.
17+
18+
Changes in this version include:
19+
20+
NEW FEATURES
21+
==============
22+
23+
o CSV-179: Add shortcut method for using first record as header to CSVFormat.
24+
o CSV-180: Add withHeader(Class? extends Enum>) to CSVFormat.
25+
o CSV-159: Add IgnoreCase option for accessing header names. Thanks to Yamil Medina.
26+
o CSV-169: The null string should be case-sensitive when reading records. Thanks to Gary Gregory.
27+
o CSV-175: Support for ignoring trailing delimiter. Thanks to Gary Gregory, Chris Jones.
28+
o CSV-177: Support trimming leading and trailing blanks. Thanks to Gary Gregory.
29+
o CSV-178: Create default formats for Informix UNLOAD and UNLOAD CSV. Thanks to Gary Gregory.
30+
31+
FIXED BUGS
32+
============
33+
34+
o CSV-168: CSVFormat.nullString should not be escaped. Thanks to Gary Gregory, cornel creanga.
35+
o CSV-170: CSVFormat.MYSQL nullString should be "\N". Thanks to Gary Gregory, cornel creanga.
36+
o CSV-161: Fix Javadoc to say CSVFormat with() methods return a new CSVFormat. Thanks to Gary Gregory, Kristof Meixner, Emmanuel Bourg.
37+
38+
CHANGES
39+
============
40+
41+
o CSV-167: Comment line hides next record; update Javadoc to make behaviour clear. Thanks to Rene.
42+
o CSV-153: CSVPrinter doesn't skip creation of header record if skipHeaderRecord is set to true. Thanks to Wren.
43+
44+
45+
Have fun!
46+
-Apache Commons CSV team
47+
48+
------------------------------------------------------------------------------
49+
150
Apache Commons CSV
251
Version 1.2
352
Release Notes

src/site/xdoc/download_csv.xml

Lines changed: 38 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,21 @@ limitations under the License.
3131
| 2) Set the following properties in the component's pom: |
3232
| - commons.componentid (required, alphabetic, lower case) |
3333
| - commons.release.version (required) |
34-
| - commons.binary.suffix (optional) |
34+
| - commons.release.name (required) |
35+
| - commons.binary.suffix (optional) |
3536
| (defaults to "-bin", set to "" for pre-maven2 releases) |
37+
| - commons.release.desc (optional) |
38+
| - commons.release.subdir (optional) |
39+
| |
40+
| - commons.release.2/3.version (conditional) |
41+
| - commons.release.2/3.name (conditional) |
42+
| - commons.release.2/3.binary.suffix (optional) |
43+
| - commons.release.2/3.desc (optional) |
44+
| - commons.release.2/3.subdir (optional) |
3645
| |
3746
| 3) Example Properties |
47+
| (commons.release.name inherited by parent: |
48+
| ${project.artifactId}-${commons.release.version} |
3849
| |
3950
| <properties> |
4051
| <commons.componentid>math</commons.componentid> |
@@ -46,17 +57,17 @@ limitations under the License.
4657
<document>
4758
<properties>
4859
<title>Download Apache Commons CSV</title>
49-
<author email="dev@commons.apache.org">Commons Documentation Team</author>
60+
<author email="dev@commons.apache.org">Apache Commons Documentation Team</author>
5061
</properties>
5162
<body>
5263
<section name="Download Apache Commons CSV">
5364
<subsection name="Using a Mirror">
5465
<p>
5566
We recommend you use a mirror to download our release
56-
builds, but you <strong>must</strong> verify the integrity of
67+
builds, but you <strong>must</strong> <a href="http://www.apache.org/info/verification.html">verify the integrity</a> of
5768
the downloaded files using signatures downloaded from our main
5869
distribution directories. Recent releases (48 hours) may not yet
59-
be available from the mirrors.
70+
be available from all the mirrors.
6071
</p>
6172

6273
<p>
@@ -88,39 +99,44 @@ limitations under the License.
8899
</form>
89100

90101
<p>
91-
The <a href="http://www.apache.org/dist/commons/KEYS">KEYS</a>
92-
link links to the code signing keys used to sign the product.
93-
The <code>PGP</code> link downloads the OpenPGP compatible signature from our main site.
94-
The <code>MD5</code> link downloads the checksum from the main site.
102+
It is essential that you
103+
<a href="https://www.apache.org/info/verification.html">verify the integrity</a>
104+
of downloaded files, preferably using the <code>PGP</code> signature (<code>*.asc</code> files);
105+
failing that using the <code>MD5</code> hash (<code>*.md5</code> checksum files).
106+
</p>
107+
<p>
108+
The <a href="https://www.apache.org/dist/commons/KEYS">KEYS</a>
109+
file contains the public PGP keys used by Apache Commons developers
110+
to sign releases.
95111
</p>
96112
</subsection>
97113
</section>
98-
<section name="Apache Commons CSV 1.2 (Java 6.0+)">
114+
<section name="Apache Commons CSV 1.3 (Java 6.0+)">
99115
<subsection name="Binaries">
100116
<table>
101117
<tr>
102-
<td><a href="[preferred]/commons/csv/binaries/commons-csv-1.2-bin.tar.gz">commons-csv-1.2-bin.tar.gz</a></td>
103-
<td><a href="http://www.apache.org/dist/commons/csv/binaries/commons-csv-1.2-bin.tar.gz.md5">md5</a></td>
104-
<td><a href="http://www.apache.org/dist/commons/csv/binaries/commons-csv-1.2-bin.tar.gz.asc">pgp</a></td>
118+
<td><a href="[preferred]/commons/csv/binaries/commons-csv-1.3-bin.tar.gz">commons-csv-1.3-bin.tar.gz</a></td>
119+
<td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.3-bin.tar.gz.md5">md5</a></td>
120+
<td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.3-bin.tar.gz.asc">pgp</a></td>
105121
</tr>
106122
<tr>
107-
<td><a href="[preferred]/commons/csv/binaries/commons-csv-1.2-bin.zip">commons-csv-1.2-bin.zip</a></td>
108-
<td><a href="http://www.apache.org/dist/commons/csv/binaries/commons-csv-1.2-bin.zip.md5">md5</a></td>
109-
<td><a href="http://www.apache.org/dist/commons/csv/binaries/commons-csv-1.2-bin.zip.asc">pgp</a></td>
123+
<td><a href="[preferred]/commons/csv/binaries/commons-csv-1.3-bin.zip">commons-csv-1.3-bin.zip</a></td>
124+
<td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.3-bin.zip.md5">md5</a></td>
125+
<td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.3-bin.zip.asc">pgp</a></td>
110126
</tr>
111127
</table>
112128
</subsection>
113129
<subsection name="Source">
114130
<table>
115131
<tr>
116-
<td><a href="[preferred]/commons/csv/source/commons-csv-1.2-src.tar.gz">commons-csv-1.2-src.tar.gz</a></td>
117-
<td><a href="http://www.apache.org/dist/commons/csv/source/commons-csv-1.2-src.tar.gz.md5">md5</a></td>
118-
<td><a href="http://www.apache.org/dist/commons/csv/source/commons-csv-1.2-src.tar.gz.asc">pgp</a></td>
132+
<td><a href="[preferred]/commons/csv/source/commons-csv-1.3-src.tar.gz">commons-csv-1.3-src.tar.gz</a></td>
133+
<td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.3-src.tar.gz.md5">md5</a></td>
134+
<td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.3-src.tar.gz.asc">pgp</a></td>
119135
</tr>
120136
<tr>
121-
<td><a href="[preferred]/commons/csv/source/commons-csv-1.2-src.zip">commons-csv-1.2-src.zip</a></td>
122-
<td><a href="http://www.apache.org/dist/commons/csv/source/commons-csv-1.2-src.zip.md5">md5</a></td>
123-
<td><a href="http://www.apache.org/dist/commons/csv/source/commons-csv-1.2-src.zip.asc">pgp</a></td>
137+
<td><a href="[preferred]/commons/csv/source/commons-csv-1.3-src.zip">commons-csv-1.3-src.zip</a></td>
138+
<td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.3-src.zip.md5">md5</a></td>
139+
<td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.3-src.zip.asc">pgp</a></td>
124140
</tr>
125141
</table>
126142
</subsection>
@@ -131,7 +147,7 @@ limitations under the License.
131147
</p>
132148
<ul>
133149
<li class="download"><a href="[preferred]/commons/csv/">browse download area</a></li>
134-
<li><a href="http://archive.apache.org/dist/commons/csv/">archives...</a></li>
150+
<li><a href="https://archive.apache.org/dist/commons/csv/">archives...</a></li>
135151
</ul>
136152
</section>
137153
</body>

src/site/xdoc/index.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ Various <a href="project-reports.html">project reports</a> are also available.
4545
The Javadoc API documents are available online:
4646
</p>
4747
<ul>
48-
<li><a href="apidocs/index.html">Javadoc trunk</a></li>
48+
<li><a href="apidocs/index.html">Javadoc trunk</a></li>
49+
<li><a href="archives/1.3/apidocs/index.html">Javadoc 1.3</a></li>
4950
<li><a href="archives/1.2/apidocs/index.html">Javadoc 1.2</a></li>
5051
<li><a href="archives/1.1/apidocs/index.html">Javadoc 1.1</a></li>
5152
<li><a href="archives/1.0/apidocs/index.html">Javadoc 1.0</a></li>
@@ -58,7 +59,8 @@ The <a href="source-repository.html">subversion repository</a> can be
5859
<!-- ================================================== -->
5960
<section name="Releases">
6061
<ul>
61-
<li><a href="http://commons.apache.org/csv/download_csv.cgi">Apache Commons CSV 1.2 (mirrors)</a> requires Java 1.6</li>
62+
<li><a href="http://commons.apache.org/csv/download_csv.cgi">Apache Commons CSV 1.3 (mirrors)</a> requires Java 1.6</li>
63+
<li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.2 (archives)</a> requires Java 1.6</li>
6264
<li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.1 (archives)</a> requires Java 1.6</li>
6365
<li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.0 (archives)</a> requires Java 1.6</li>
6466
</ul>
@@ -78,7 +80,7 @@ For previous releases, see the <a href="http://archive.apache.org/dist/commons/c
7880
<pre>&lt;dependency&gt;
7981
&lt;groupId&gt;org.apache.commons&lt;/groupId&gt;
8082
&lt;artifactId&gt;commons-csv&lt;/artifactId&gt;
81-
&lt;version&gt;1.2&lt;/version&gt;
83+
&lt;version&gt;1.3&lt;/version&gt;
8284
&lt;/dependency&gt;</pre>
8385
</p>
8486
<p>

0 commit comments

Comments
 (0)