You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2018/09/25 13:12:37 UTC

[01/12] commons-csv git commit: Update to latest commons-parent

Repository: commons-csv
Updated Branches:
  refs/heads/master 4e1802db9 -> 70187c317
Updated Tags:  refs/tags/csv-1.6 [created] d5524f070


Update to latest commons-parent


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/62515c52
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/62515c52
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/62515c52

Branch: refs/heads/master
Commit: 62515c52eccb30533615c0dfd8bf072b635268db
Parents: 4e1802d
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 10:32:55 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 10:32:55 2018 +0200

----------------------------------------------------------------------
 pom.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/62515c52/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index f9491cf..5433ba2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -20,7 +20,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-parent</artifactId>
-    <version>43</version>
+    <version>47</version>
   </parent>
   <artifactId>commons-csv</artifactId>
   <version>1.6-SNAPSHOT</version>
@@ -152,6 +152,9 @@ CSV files of various types.
     <checkstyle.version>2.17</checkstyle.version>
     <checkstyle.header.file>${basedir}/LICENSE-header.txt</checkstyle.header.file>
     <checkstyle.resourceExcludes>LICENSE.txt, NOTICE.txt</checkstyle.resourceExcludes>
+
+    <!-- Fix for COMMONSSITE-124 remove once commons-parent 48 has been released -->
+    <commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId}</commons.scmPubUrl>
   </properties>
 
   <build>


[12/12] commons-csv git commit: Bump to next development version

Posted by br...@apache.org.
Bump to next development version


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/70187c31
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/70187c31
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/70187c31

Branch: refs/heads/master
Commit: 70187c3171effc1c824c0e38f69b9211a351f6be
Parents: 2596fde
Author: Benedikt Ritter <br...@apache.org>
Authored: Tue Sep 25 15:11:34 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Tue Sep 25 15:11:34 2018 +0200

----------------------------------------------------------------------
 pom.xml                 | 2 +-
 src/changes/changes.xml | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/70187c31/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index a920cbc..6de64ca 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
     <version>47</version>
   </parent>
   <artifactId>commons-csv</artifactId>
-  <version>1.6</version>
+  <version>1.7-SNAPSHOT</version>
   <name>Apache Commons CSV</name>
   <url>http://commons.apache.org/proper/commons-csv/</url>
   <description>

http://git-wip-us.apache.org/repos/asf/commons-csv/blob/70187c31/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 66cccab..dc3ab09 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -38,6 +38,8 @@
     <title>Release Notes</title>
   </properties>
   <body>
+    <release version="1.7" date="tba" description="Feature and bug fix release">
+    </release>
     <release version="1.6" date="2018-09-22" description="Feature and bug fix release">
       <action issue="CSV-231" type="update" dev="britter">Add more documentation to CSVPrinter.</action>
       <action issue="CSV-217" type="add" dev="ggregory" due-to="Korolyov Alexei">Add autoFlush option for CsvPrinter. PR #24.</action>


[02/12] commons-csv git commit: Add temporary fix for COMMONSSITE-125

Posted by br...@apache.org.
Add temporary fix for COMMONSSITE-125


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/af261c8f
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/af261c8f
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/af261c8f

Branch: refs/heads/master
Commit: af261c8fbf29b215f8ab9ff66200948968ac28c0
Parents: 62515c5
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 10:38:30 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 10:38:30 2018 +0200

----------------------------------------------------------------------
 pom.xml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/af261c8f/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 5433ba2..3fa6dd4 100644
--- a/pom.xml
+++ b/pom.xml
@@ -155,6 +155,8 @@ CSV files of various types.
 
     <!-- Fix for COMMONSSITE-124 remove once commons-parent 48 has been released -->
     <commons.scmPubUrl>https://svn.apache.org/repos/infra/websites/production/commons/content/proper/${project.artifactId}</commons.scmPubUrl>
+    <!-- Fix for COMMONSSITE-125 remove once commons-parent 48 has been released -->
+    <commons.osgi.symbolicName>org.apache.commons.${commons.componentid}</commons.osgi.symbolicName>
   </properties>
 
   <build>


[06/12] commons-csv git commit: Generate download page for release 1.6

Posted by br...@apache.org.
Generate download page for release 1.6


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/61820130
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/61820130
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/61820130

Branch: refs/heads/master
Commit: 61820130cda780da09627ecab910a003567a280c
Parents: 2596582
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 11:16:55 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 11:16:55 2018 +0200

----------------------------------------------------------------------
 src/site/xdoc/download_csv.xml | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/61820130/src/site/xdoc/download_csv.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/download_csv.xml b/src/site/xdoc/download_csv.xml
index ab02d63..4eaf015 100644
--- a/src/site/xdoc/download_csv.xml
+++ b/src/site/xdoc/download_csv.xml
@@ -102,7 +102,7 @@ limitations under the License.
         It is essential that you
         <a href="https://www.apache.org/info/verification.html">verify the integrity</a>
         of downloaded files, preferably using the <code>PGP</code> signature (<code>*.asc</code> files);
-        failing that using the <code>MD5</code> hash (<code>*.md5</code> checksum files).
+        failing that using the <code>SHA-512</code> hash (<code>*.sha512</code> checksum files).
       </p>
       <p>
         The <a href="https://www.apache.org/dist/commons/KEYS">KEYS</a>
@@ -111,32 +111,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Apache Commons CSV 1.5 (Java 7+)">
+    <section name="Apache Commons CSV 1.6 (Java 7+)">
       <subsection name="Binaries">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/csv/binaries/commons-csv-1.5-bin.tar.gz">commons-csv-1.5-bin.tar.gz</a></td>
-              <td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.5-bin.tar.gz.md5">md5</a></td>
-              <td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.5-bin.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/csv/binaries/commons-csv-1.6-bin.tar.gz">commons-csv-1.6-bin.tar.gz</a></td>
+              <td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.6-bin.tar.gz.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.6-bin.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/csv/binaries/commons-csv-1.5-bin.zip">commons-csv-1.5-bin.zip</a></td>
-              <td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.5-bin.zip.md5">md5</a></td>
-              <td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.5-bin.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/csv/binaries/commons-csv-1.6-bin.zip">commons-csv-1.6-bin.zip</a></td>
+              <td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.6-bin.zip.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/csv/binaries/commons-csv-1.6-bin.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/csv/source/commons-csv-1.5-src.tar.gz">commons-csv-1.5-src.tar.gz</a></td>
-              <td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.5-src.tar.gz.md5">md5</a></td>
-              <td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.5-src.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/csv/source/commons-csv-1.6-src.tar.gz">commons-csv-1.6-src.tar.gz</a></td>
+              <td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.6-src.tar.gz.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.6-src.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/csv/source/commons-csv-1.5-src.zip">commons-csv-1.5-src.zip</a></td>
-              <td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.5-src.zip.md5">md5</a></td>
-              <td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.5-src.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/csv/source/commons-csv-1.6-src.zip">commons-csv-1.6-src.zip</a></td>
+              <td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.6-src.zip.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/csv/source/commons-csv-1.6-src.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>


[11/12] commons-csv git commit: Update version numbers for commons-csv release 1.6

Posted by br...@apache.org.
Update version numbers for commons-csv release 1.6


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/2596fdee
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/2596fdee
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/2596fdee

Branch: refs/heads/master
Commit: 2596fdeebcab53fe459c481990bf1dec838128a5
Parents: 11b557e
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 13:45:44 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 13:45:44 2018 +0200

----------------------------------------------------------------------
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/2596fdee/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 893989b..a920cbc 100644
--- a/pom.xml
+++ b/pom.xml
@@ -23,7 +23,7 @@
     <version>47</version>
   </parent>
   <artifactId>commons-csv</artifactId>
-  <version>1.6-SNAPSHOT</version>
+  <version>1.6</version>
   <name>Apache Commons CSV</name>
   <url>http://commons.apache.org/proper/commons-csv/</url>
   <description>


[04/12] commons-csv git commit: Fix link to release archive

Posted by br...@apache.org.
Fix link to release archive


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/6c87f1fe
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/6c87f1fe
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/6c87f1fe

Branch: refs/heads/master
Commit: 6c87f1fe41d93057dbccbf074f855b56dc737950
Parents: 79adf78
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 10:59:14 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 10:59:14 2018 +0200

----------------------------------------------------------------------
 src/site/xdoc/index.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/6c87f1fe/src/site/xdoc/index.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index 40df179..04dabfb 100644
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -67,7 +67,7 @@ The <a href="source-repository.html">git repository</a> can be
 <section name="Releases">
 <ul>
   <li><a href="http://commons.apache.org/csv/download_csv.cgi">Apache Commons CSV 1.5 (mirrors)</a> requires Java 1.7</li>
-  <li><a href="http://commons.apache.org/dist/commons/csv/">Apache Commons CSV 1.4 (archives)</a> requires Java 1.6</li>
+  <li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.4 (archives)</a> requires Java 1.6</li>
   <li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.3 (archives)</a> requires Java 1.6</li>
   <li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.2 (archives)</a> requires Java 1.6</li>
   <li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.1 (archives)</a> requires Java 1.6</li>


[07/12] commons-csv git commit: Add RELEASE-NOTES for release 1.6

Posted by br...@apache.org.
Add RELEASE-NOTES for release 1.6


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/a6458f15
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/a6458f15
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/a6458f15

Branch: refs/heads/master
Commit: a6458f1587cd0159598f3fd984e2c810b94acc0d
Parents: 6182013
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 11:26:20 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 11:26:20 2018 +0200

----------------------------------------------------------------------
 RELEASE-NOTES.txt | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/a6458f15/RELEASE-NOTES.txt
----------------------------------------------------------------------
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index cf7c853..3497353 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,4 +1,58 @@
                         Apache Commons CSV
+                            Version 1.6
+                           Release Notes
+
+
+INTRODUCTION:
+
+This document contains the release notes for the 1.6 version of
+Apache Commons CSV. Commons CSV reads and writes files in variations of the
+Comma Separated Value (CSV) format.
+
+CSV requires at least Java 7.
+
+The Apache Commons CSV library provides a simple interface for reading and
+writing CSV files of various types.
+
+Feature and bug fix release.
+
+Changes in this version include:
+
+NEW FEATURES
+==============
+
+o CSV-217:  Add autoFlush option for CsvPrinter. PR #24.
+            Thanks to Korolyov Alexei.
+o CSV-220:  Add API org.apache.commons.csv.CSVFormat.withSystemRecordSeparator().
+            Thanks to Gary Gregory.
+
+FIXED BUGS
+============
+
+o CSV-219:  The behavior of quote char using is not similar as Excel does when
+            the first string contains CJK char(s). Thanks to Zhang Hongda.
+o CSV-172:  Don't quote cells just because they have UTF-8 encoded characters.
+            Thanks to Andrew Pennebaker.
+o CSV-223:  Inconsistency between Javadoc of CSVFormat DEFAULT EXCEL.
+            Thanks to Samuel Martin.
+o CSV-209:  Create CSVFormat.ORACLE preset. Thanks to Gary Gregory.
+o CSV-224:  Some multi-iterator parsing peek sequences incorrectly consume
+            elements. Thanks to David Warshaw.
+o CSV-225:  Parse method should avoid creating a redundant BufferedReader.
+            Thanks to Anson Schwabecher.
+
+CHANGES
+=========
+
+o CSV-231:  Add more documentation to CSVPrinter.
+
+
+Have fun!
+-Apache Commons CSV team
+
+------------------------------------------------------------------------------
+
+                        Apache Commons CSV
                             Version 1.5
                            Release Notes
 


[03/12] commons-csv git commit: Adopt commons-jcs way of generating SHA-512 checksums

Posted by br...@apache.org.
Adopt commons-jcs way of generating SHA-512 checksums


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/79adf78d
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/79adf78d
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/79adf78d

Branch: refs/heads/master
Commit: 79adf78d231388350b8c8fb2fd16b7810e332620
Parents: af261c8
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 10:51:35 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 10:51:35 2018 +0200

----------------------------------------------------------------------
 pom.xml | 39 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 39 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/79adf78d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 3fa6dd4..d694794 100644
--- a/pom.xml
+++ b/pom.xml
@@ -242,6 +242,45 @@ CSV files of various types.
           </excludes>
         </configuration>
       </plugin>
+
+      <!--
+        calculate checksums of release artifacts for Apache dist area
+      -->
+      <plugin>
+        <groupId>net.nicoulaj.maven.plugins</groupId>
+        <artifactId>checksum-maven-plugin</artifactId>
+        <version>1.7</version>
+        <executions>
+          <execution>
+            <id>generate.checksums</id>
+            <phase>verify</phase>
+            <goals>
+              <goal>files</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <algorithms>
+            <algorithm>SHA-512</algorithm>
+          </algorithms>
+          <csvSummary>false</csvSummary>
+          <fileSets>
+            <fileSet>
+              <directory>${project.build.directory}</directory>
+              <includes>
+                <include>${project.artifactId}-${project.version}-src.zip</include>
+                <include>
+                  ${project.artifactId}-${project.version}-src.tar.gz
+                </include>
+                <include>${project.artifactId}-${project.version}-bin.zip</include>
+                <include>
+                  ${project.artifactId}-${project.version}-bin.tar.gz
+                </include>
+              </includes>
+            </fileSet>
+          </fileSets>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
 


[05/12] commons-csv git commit: Update website for commons-csv 1.6 release

Posted by br...@apache.org.
Update website for commons-csv 1.6 release


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/2596582d
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/2596582d
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/2596582d

Branch: refs/heads/master
Commit: 2596582d61083f0d6ea9e3de63307d005f9aab2d
Parents: 6c87f1f
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 11:03:14 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 11:03:14 2018 +0200

----------------------------------------------------------------------
 src/site/site.xml       | 2 ++
 src/site/xdoc/index.xml | 6 ++++--
 2 files changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/2596582d/src/site/site.xml
----------------------------------------------------------------------
diff --git a/src/site/site.xml b/src/site/site.xml
index 25165bc..ad46165 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -40,6 +40,7 @@
       <item name="Team"                  href="/team-list.html"/>
       <item name="Source Repository"     href="/source-repository.html"/>
       <item name="Javadoc trunk"         href="/apidocs/index.html"/>
+      <item name="Javadoc 1.6"           href="/archives/1.6/apidocs/index.html"/>
       <item name="Javadoc 1.5"           href="/archives/1.5/apidocs/index.html"/>
       <item name="Javadoc 1.4"           href="/archives/1.4/apidocs/index.html"/>
       <item name="Javadoc 1.3"           href="/archives/1.3/apidocs/index.html"/>
@@ -49,6 +50,7 @@
     </menu>
 
     <menu name="Site Archives">
+      <item name="CSV 1.5"       href="/archives/1.5/index.html"/>
       <item name="CSV 1.4"       href="/archives/1.4/index.html"/>
       <item name="CSV 1.3"       href="/archives/1.3/index.html"/>
       <item name="CSV 1.2"       href="/archives/1.2/index.html"/>

http://git-wip-us.apache.org/repos/asf/commons-csv/blob/2596582d/src/site/xdoc/index.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index 04dabfb..8d8b248 100644
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -51,6 +51,7 @@ The Javadoc API documents are available online:
 </p>
 <ul>
   <li><a href="apidocs/index.html">Javadoc trunk</a></li>
+  <li><a href="archives/1.6/apidocs/index.html">Javadoc 1.6</a></li>
   <li><a href="archives/1.5/apidocs/index.html">Javadoc 1.5</a></li>
   <li><a href="archives/1.4/apidocs/index.html">Javadoc 1.4</a></li>
   <li><a href="archives/1.3/apidocs/index.html">Javadoc 1.3</a></li>
@@ -66,7 +67,8 @@ The <a href="source-repository.html">git repository</a> can be
 <!-- ================================================== -->
 <section name="Releases">
 <ul>
-  <li><a href="http://commons.apache.org/csv/download_csv.cgi">Apache Commons CSV 1.5 (mirrors)</a> requires Java 1.7</li>
+  <li><a href="http://commons.apache.org/csv/download_csv.cgi">Apache Commons CSV 1.6 (mirrors)</a> requires Java 1.7</li>
+  <li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.5 (archives)</a> requires Java 1.7</li>
   <li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.4 (archives)</a> requires Java 1.6</li>
   <li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.3 (archives)</a> requires Java 1.6</li>
   <li><a href="http://archive.apache.org/dist/commons/csv/">Apache Commons CSV 1.2 (archives)</a> requires Java 1.6</li>
@@ -89,7 +91,7 @@ For previous releases, see the <a href="http://archive.apache.org/dist/commons/c
   <pre>&lt;dependency&gt;
     &lt;groupId&gt;org.apache.commons&lt;/groupId&gt;
     &lt;artifactId&gt;commons-csv&lt;/artifactId&gt;
-    &lt;version&gt;1.5&lt;/version&gt;
+    &lt;version&gt;1.6&lt;/version&gt;
 &lt;/dependency&gt;</pre>
 </p>
 <p>


[10/12] commons-csv git commit: Update NOTICE.txt

Posted by br...@apache.org.
Update NOTICE.txt


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/11b557ee
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/11b557ee
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/11b557ee

Branch: refs/heads/master
Commit: 11b557ee48d0e71d96663932d446e9b12d78a611
Parents: 544400b
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 11:54:57 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 11:54:57 2018 +0200

----------------------------------------------------------------------
 NOTICE.txt | 2 +-
 pom.xml    | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/11b557ee/NOTICE.txt
----------------------------------------------------------------------
diff --git a/NOTICE.txt b/NOTICE.txt
index 14c9397..85a48c8 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache Commons CSV
-Copyright 2005-2017 The Apache Software Foundation
+Copyright 2005-2018 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).

http://git-wip-us.apache.org/repos/asf/commons-csv/blob/11b557ee/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index d694794..893989b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -142,6 +142,7 @@ CSV files of various types.
     <commons.module.name>org.apache.commons.csv</commons.module.name>
     <commons.jira.id>CSV</commons.jira.id>
     <commons.jira.pid>12313222</commons.jira.pid>
+    <project.inceptionYear>2005</project.inceptionYear>
     <maven.compiler.source>1.7</maven.compiler.source>
     <maven.compiler.target>1.7</maven.compiler.target>
     <!-- Ensure copies work OK (can be removed later when this is in parent POM) -->


[08/12] commons-csv git commit: Add release date

Posted by br...@apache.org.
Add release date


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/b3bb9776
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/b3bb9776
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/b3bb9776

Branch: refs/heads/master
Commit: b3bb9776ae91da0d14d3039a58b7fe20f9482300
Parents: a6458f1
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 11:27:08 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 11:27:08 2018 +0200

----------------------------------------------------------------------
 src/changes/changes.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/b3bb9776/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 607b979..66cccab 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -38,7 +38,7 @@
     <title>Release Notes</title>
   </properties>
   <body>
-    <release version="1.6" date="2018-MM-DD" description="Feature and bug fix release">
+    <release version="1.6" date="2018-09-22" description="Feature and bug fix release">
       <action issue="CSV-231" type="update" dev="britter">Add more documentation to CSVPrinter.</action>
       <action issue="CSV-217" type="add" dev="ggregory" due-to="Korolyov Alexei">Add autoFlush option for CsvPrinter. PR #24.</action>
       <action issue="CSV-219" type="fix" dev="ggregory" due-to="Zhang Hongda">The behavior of quote char using is not similar as Excel does when the first string contains CJK char(s).</action>


[09/12] commons-csv git commit: Regenerate GitHub documentation

Posted by br...@apache.org.
Regenerate GitHub documentation


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/544400be
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/544400be
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/544400be

Branch: refs/heads/master
Commit: 544400be1858c5c060f1edfc455b02b34747c21e
Parents: b3bb977
Author: Benedikt Ritter <br...@apache.org>
Authored: Wed Sep 19 11:52:48 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Wed Sep 19 11:52:48 2018 +0200

----------------------------------------------------------------------
 CONTRIBUTING.md | 4 ++--
 README.md       | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/544400be/CONTRIBUTING.md
----------------------------------------------------------------------
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index a259af1..5d133b3 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -50,7 +50,7 @@ Getting Started
 
 + Make sure you have a [JIRA account](https://issues.apache.org/jira/).
 + Make sure you have a [GitHub account](https://github.com/signup/free).
-+ If you're planning to implement a new feature it makes sense to discuss you're changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons CSV's scope.
++ If you're planning to implement a new feature it makes sense to discuss your changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons CSV's scope.
 + Submit a [Jira Ticket][jira] for your issue, assuming one does not already exist.
   + Clearly describe the issue including steps to reproduce when it is a bug.
   + Make sure you fill in the earliest version that you know has the issue.
@@ -107,7 +107,7 @@ Additional Resources
 + [Apache Commons CSV JIRA project page][jira]
 + [Contributor License Agreement][cla]
 + [General GitHub documentation](https://help.github.com/)
-+ [GitHub pull request documentation](https://help.github.com/send-pull-requests/)
++ [GitHub pull request documentation](https://help.github.com/articles/creating-a-pull-request/)
 + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
 + `#apache-commons` IRC channel on `irc.freenode.net`
 

http://git-wip-us.apache.org/repos/asf/commons-csv/blob/544400be/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 68b7aa4..32385ab 100644
--- a/README.md
+++ b/README.md
@@ -43,10 +43,10 @@
 Apache Commons CSV
 ===================
 
-[![Build Status](https://travis-ci.org/apache/commons-csv.svg?branch=master)](https://travis-ci.org/apache/commons-csv)
-[![Coverage Status](https://coveralls.io/repos/apache/commons-csv/badge.svg?branch=master)](https://coveralls.io/r/apache/commons-csv)
+[![Build Status](https://travis-ci.org/apache/commons-csv.svg)](https://travis-ci.org/apache/commons-csv)
+[![Coverage Status](https://coveralls.io/repos/apache/commons-csv/badge.svg)](https://coveralls.io/r/apache/commons-csv)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-csv/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-csv/)
-[![License](http://img.shields.io/:license-apache-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-csv/1.6.svg)](https://javadoc.io/doc/org.apache.commons/commons-csv/1.6)
 
 The Apache Commons CSV library provides a simple interface for reading and writing
 CSV files of various types.
@@ -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.5</version>
+  <version>1.6</version>
 </dependency>
 ```