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/19 11:57:07 UTC

svn commit: r29508 - in /dev/commons/csv/1.6-RC1: ./ binaries/ source/

Author: britter
Date: Wed Sep 19 11:57:06 2018
New Revision: 29508

Log:
Add Apache Commons CSV 1.6 RC1

Added:
    dev/commons/csv/1.6-RC1/
    dev/commons/csv/1.6-RC1/RELEASE-NOTES.txt
    dev/commons/csv/1.6-RC1/binaries/
    dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz   (with props)
    dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz.asc
    dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz.sha512
    dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip   (with props)
    dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip.asc
    dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip.sha512
    dev/commons/csv/1.6-RC1/source/
    dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz   (with props)
    dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz.asc
    dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz.sha512
    dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip   (with props)
    dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip.asc
    dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip.sha512

Added: dev/commons/csv/1.6-RC1/RELEASE-NOTES.txt
==============================================================================
--- dev/commons/csv/1.6-RC1/RELEASE-NOTES.txt (added)
+++ dev/commons/csv/1.6-RC1/RELEASE-NOTES.txt Wed Sep 19 11:57:06 2018
@@ -0,0 +1,386 @@
+                        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
+
+
+INTRODUCTION:
+
+This document contains the release notes for the 1.5 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-189:  CSVParser: Add factory method accepting InputStream. Thanks to Peter Holzwarth, Gary Gregory.
+o CSV-190:  Add convenience API CSVFormat.print(File, Charset). Thanks to Gary Gregory.
+o CSV-191:  Add convenience API CSVFormat.print(Path, Charset). Thanks to Gary Gregory.
+o CSV-192:  Add convenience API CSVParser.parse(Path, Charset, CSVFormat). Thanks to Gary Gregory.
+o CSV-205:  Add convenience API CSVFormat#printer() to print to System.out. Thanks to Gary Gregory.
+o CSV-207:  Provide a CSV Format for printing PostgreSQL CSV and Text formats. Thanks to Gary Gregory.
+o CSV-214:  Adding a placeholder in the Lexer and CSV parser to store the end-of-line string. Thanks to Nitin Mahendru, Gary Gregory.
+
+FIXED BUGS
+============
+
+o CSV-203:  withNullString value is printed without quotes when QuoteMode.ALL is specified; add QuoteMode.ALL_NON_NULL. PR #17. Thanks to Richard Wheeldon, Kai Paroth.
+o CSV-194:  Fix outdated comments about FileReader in CSVParser #13. Thanks to Marc Prud'hommeaux.
+o CSV-193:  Fix incorrect method name 'withFirstRowAsHeader' in user guide. Thanks to Matthias Wiehl.
+o CSV-171:  Negative numeric values in the first column are always quoted in minimal mode. Thanks to Gary Gregory, Michael Graessle, Adrian Bridgett.
+
+CHANGES
+=========
+
+o CSV-187: Update platform requirement from Java 6 to 7. Thanks to Gary Gregory.
+o CSV-201: Do not use RuntimeException in CSVParser.iterator().new Iterator() {...}.getNextRecord(). Thanks to Benedikt Ritter, Gary Gregory.
+
+
+Historical list of changes: http://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 Apache Commons CSV website:
+
+http://commons.apache.org/proper/commons-csv/
+
+Have fun!
+-Apache Commons CSV team
+
+------------------------------------------------------------------------------
+
+                        Apache Commons CSV
+                            Version 1.4
+                           Release Notes
+
+
+INTRODUCTION:
+
+This document contains the release notes for the 1.4 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 6.
+
+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-182:  Allow some printing operations directly from CSVFormat. Thanks to Gary Gregory.
+
+
+CHANGES
+=========
+
+o CSV-181:  Make CSVPrinter.print(Object) GC-free. Thanks to Gary Gregory.
+o CSV-183:  Drop ferc.gov tests.  
+
+
+Historical list of changes: http://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 Apache Commons CSV website:
+
+http://commons.apache.org/proper/commons-csv/
+
+Have fun!
+-Apache Commons CSV team
+
+------------------------------------------------------------------------------
+
+                        Apache Commons CSV
+                           Version 1.3
+                          Release Notes
+
+
+INTRODUCTION:
+
+This document contains the release notes for the 1.3 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 6.
+
+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-179:  Add shortcut method for using first record as header to CSVFormat.
+o CSV-180:  Add withHeader(Class? extends Enum>) to CSVFormat.
+o CSV-159:  Add IgnoreCase option for accessing header names. Thanks to Yamil Medina.
+o CSV-169:  The null string should be case-sensitive when reading records. Thanks to Gary Gregory.
+o CSV-175:  Support for ignoring trailing delimiter. Thanks to Gary Gregory, Chris Jones.
+o CSV-177:  Support trimming leading and trailing blanks. Thanks to Gary Gregory.
+o CSV-178:  Create default formats for Informix UNLOAD and UNLOAD CSV. Thanks to Gary Gregory.
+
+FIXED BUGS
+============
+
+o CSV-168:  CSVFormat.nullString should not be escaped. Thanks to Gary Gregory, cornel creanga.
+o CSV-170:  CSVFormat.MYSQL nullString should be "\N". Thanks to Gary Gregory, cornel creanga.
+o CSV-161:  Fix Javadoc to say CSVFormat with() methods return a new CSVFormat. Thanks to Gary Gregory, Kristof Meixner, Emmanuel Bourg.
+
+CHANGES
+============
+
+o CSV-167:  Comment line hides next record; update Javadoc to make behaviour clear. Thanks to Rene.
+o CSV-153:  CSVPrinter doesn't skip creation of header record if skipHeaderRecord is set to true. Thanks to Wren.
+
+
+Have fun!
+-Apache Commons CSV team
+
+------------------------------------------------------------------------------
+
+                        Apache Commons CSV
+                           Version 1.2
+                          Release Notes
+
+
+INTRODUCTION:
+
+This document contains the release notes for the 1.2 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 6.
+
+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-157:  Add enum CSVFormat.Predefined that contains the default CSVFormat values.
+
+FIXED BUGS
+============
+
+o CSV-145:  CSVFormat.with* methods clear the header comments. Thanks to Frank Ulbricht.
+o CSV-156:  Incorrect Javadoc on QuoteMode.NONE. Thanks to Jason Steenstra-Pickens.
+
+
+Historical list of changes: http://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 Apache Commons CSV website:
+
+http://commons.apache.org/proper/commons-csv/
+
+Have fun!
+-Apache Commons CSV team
+
+------------------------------------------------------------------------------
+
+                        Apache Commons CSV
+                           Version 1.1
+                          Release Notes
+
+
+INTRODUCTION:
+
+This document contains the release notes for the 1.1 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 6.
+
+The Apache Commons CSV library provides a simple interface for reading and writing
+CSV files of various types.
+
+This is our second release.
+
+Changes in this version include:
+
+New features:
+o [CSV-129] Add CSVFormat#with 0-arg methods matching boolean arg methods. 
+o [CSV-131] Save positions of records to enable random access. Thanks to Holger Stratmann. 
+o [CSV-139] CSVPrinter.printRecord(ResultSet) with metadata. 
+
+Fixed Bugs:
+o [CSV-140] QuoteMode.NON_NUMERIC doesn't work with CSVPrinter.printRecords(ResultSet). Thanks to Damjan Jovanovic. 
+o [CSV-130] CSVFormat#withHeader doesn't work well with #printComment, add withHeaderComments(String...). Thanks to Sergei Lebedev. 
+o [CSV-128] CSVFormat.EXCEL should ignore empty header names. 
+o [CSV-132] Incorrect Javadoc referencing org.apache.commons.csv.CSVFormat withQuote(). Thanks to Sascha Szott. 
+
+Changes:
+o [CSV-124] Improve toString() implementation of CSVRecord. Thanks to Kalyan. 
+o [CSV-134] Unified parameter validation. Thanks to wu wen. 
+
+Historical list of changes: http://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 Apache Commons CSV website:
+
+http://commons.apache.org/proper/commons-csv/
+
+Have fun!
+-Apache Commons CSV team
+
+-------------------------------------------------------------------------------
+
+                        Apache Commons CSV
+                           Version 1.0
+                          Release Notes
+
+
+INTRODUCTION:
+
+This document contains the release notes for the 1.0 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 6.0.
+
+The Apache Commons CSV library provides a simple interface for reading and writing
+CSV files of various types.
+
+First release
+
+Changes in this version include:
+
+NEW FEATURES
+============
+
+o CSV-121:  IllegalArgumentException thrown when the header contains duplicate names when the column names are empty.
+            Thanks to Sebastian Hardt.
+o CSV-120:  CSVFormat#withHeader doesn't work with CSVPrinter Thanks to Sergei Lebedev.
+o CSV-119:  CSVFormat is missing a print(...) method Thanks to Sergei Lebedev.
+o CSV-105:  Add Map conversion API to CSVRecord
+o CSV-52:   Keep track of record number
+o CSV-92:   Need a way to extract parsed headers, e.g. for use in formatting
+            output
+o CSV-65:   Header support
+o CSV-48:   Predefined format for MYSQL
+
+FIXED BUGS
+==========
+
+o CSV-125:  No longer works with Java 6
+o CSV-122:  NullPointerException when empty header string and and null string of "".
+            Thanks to Mike Lewis.
+o CSV-118:  CSVRecord.toMap() throws NPE on formats with no
+            headers. Thanks to Enrique Lara.
+o CSV-113:  Check whether ISE/IAE are being used appropriately
+o CSV-114:  CSVFormat constructor should reject a header array with duplicate
+            entries
+o CSV-112:  HeaderMap is inconsistent when it is parsed from an input with
+            duplicate columns names
+o CSV-111:  CSVRecord.toMap() fails if row length shorter than header length
+o CSV-106:  CSVFormat.format allways append null
+o CSV-100:  CSVParser: getHeaderMap throws NPE
+o CSV-53:   CSVRecord does not verify that the length of the header mapping
+            matches the number of values
+o CSV-54:   Confusing semantic of the ignore leading/trailing spaces parameters
+o CSV-34:   CSVFormat describes itself as immutable, but it is not - in
+            particular it is not thread-safe
+o CSV-36:   Endless loops in CSV parser
+o CSV-13:   NullPointerException in CSVPrinter.print()/println()
+o CSV-23:   Excel strategy uses wrong separator
+
+CHANGES
+=======
+
+o CSV-117:  Validate format parameters in constructor
+o CSV-42:   Lots of possible changes Thanks to Bob Smith.
+o CSV-78:   Use Character instead of char for char fields except delimiter
+o CSV-99:   Revert Builder implementation in CSVFormat
+o CSV-93:   Allow the handling of NULL values
+o CSV-68:   Use the Builder pattern for CSVFormat
+o CSV-84:   Clarify comment handling
+o CSV-25:   CSVParser.nextValue() seems pointless
+o CSV-97:   Allow the String value for null to be customized for the CSV
+            printer
+o CSV-88:   Not possible to create a CSVFormat from scratch
+o CSV-94:   Lexer should only use char fields
+o CSV-71:   Add convenience methods to CSVLexer
+o CSV-59:   Is CharBuffer really needed, now that StringBuilder is available?
+o CSV-55:   Replace while(true)-loop in CSVParser.getRecord with do-while-loop
+o CSV-45:   CSVPrinter overhaul
+o CSV-49:   CSVStrategy has modifiable public static variables Thanks to Bob Smith.
+o CSV-46:   Reduce visibility of methods in internal classes
+o CSV-26:   ExtendedBufferedReader does too much
+o CSV-27:   Decide whether to keep the csv.writer subpackage
+
+
+Historical list of changes: http://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 Apache Commons CSV website:
+
+http://commons.apache.org/proper/commons-csv/
+
+Have fun!
+-Apache Commons CSV team
+

Added: dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz.asc
==============================================================================
--- dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz.asc (added)
+++ dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz.asc Wed Sep 19 11:57:06 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEzVRkMV8LmMd+bo7NnarcHJ/MgtAFAluiN94ACgkQnarcHJ/M
+gtCcTQ/+Na5Eq3blLQxvaWJME6fH5reXCcrAOOvQB099WP0p0VF5Wyqayi3hTW5I
+IZRVpp3d3FxQ+KIQtvj88PUz20vqi3z+JcpESsnoo6G0ld0Fu+P6yJHBHRRZbJ0f
+7TyGvVDcbgfXr4ZqtBPTD9LN6Q+y47yI3kEE4zTOv+n6iD/pmxSM4sV7d+2SZl6K
+IIUvvidOL1LmkaZXEiZ98OBWbOMF+1diaXmuj/zIkOlMpSowm5/95MFAr/rPIFoc
+Ci5/mRzMBM4PxWaJMkRCzQdx4Aq6xWx/lDgQJ6/jlPlKw8YUJM9z4feD9oseaxHc
+iBOEC9TUNG1tWVWaIviikpJOg57/XVAv/brbwQw+xThyjmhLvyu7D+5ZSh7kRuTq
+CQLmBYRsV2I+4qIeKgExU0cjsG6VShhPT+PsLFKRQbBcLRmvvOIRB4Hkpi4F07KU
+w8OA9IE4k/sJQu8J/7mMBh/LSNAsyBWcx4Jr1K53e1sNrXGMtkxZCtq9nYNcOQPg
+AJHEehVzm5/mKZg9iGHGDUGXuhqlODAq9UN6O4gYaVKs3t1x8TiacnShZ2Ri1vOh
+vcttCYw+1S7FlOJcKdVDllAdZUiuxYMSw3AtIkz7HlHYSvn7xFhchdTWC4narotA
+W8dn5A6p4MkmOzgIMTEZ7s3oIUMxz5buAtk+0AMuNxf+4zrNS44=
+=Cm0o
+-----END PGP SIGNATURE-----

Added: dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz.sha512
==============================================================================
--- dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz.sha512 (added)
+++ dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.tar.gz.sha512 Wed Sep 19 11:57:06 2018
@@ -0,0 +1 @@
+a3b8e31a19721d48b281d6cd62aa07e24a54785e723180729ce961f65b9626ee6fbb4b02042a6631aac1b48e6ed601284c783cdad3d715e8e3429e70c12dd1f9
\ No newline at end of file

Added: dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip.asc
==============================================================================
--- dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip.asc (added)
+++ dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip.asc Wed Sep 19 11:57:06 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEzVRkMV8LmMd+bo7NnarcHJ/MgtAFAluiN94ACgkQnarcHJ/M
+gtBOEQ//Zf3g8DGWXVZ5o5t8/edqFKFtjalENFHMhJB0xePMfAo9Ms74TvejhtaD
+/hQpE3vA+HN5l8KbPcPQnmwaye7YM4ToTgHuiNxxPvoozFNmThJFwQxvEw9hrSru
+mQIdUx89ix1i38+zx3rCfDJ58hZ1K94uzYy+iWnqRinjhzbzKvd7DMa0wYofPU9V
+ZFtUCKsLygst4umcCSy9vlZCWweVebbI3mT8xY/WNe0YZ2Aw3MP3luN1nAVHAnF0
+4lWkPENBm69uvfJJPp8BYgJmdSvqnCSR23EYjpryrv6aHmsEYJZX7sDlmvD5m4po
+2pzOU3j+3jEX2FgPc0KbMJEovi4YpCuRKugv5LlBozMviKDR5S9BDd40wPV92R0f
+Fp2bmSanVU8UFB0Pgt+5HI563C4bYYGOcmJ4tJaUfx2bteYrd5jW6KHTDkFAQ46s
+iylSyHelVKLdMyLh0OPBUbxvE/gxBUo/5Wl1D97tJa7rb+bUrXLQJgm151g5hbl8
+DlgIutdHpkdnB8r2lgB9dEAW+81EOBMabjoSU0JyT/COdA+IWckXbdeLrdEvb00F
+rh8OG73Agw3ZHKWqyORX0bX+fQ53HJ+PIH+J7n0otx1GlRvKMNDn9XVy2mxonxrB
+zQuHenAgsObTgSYjWcioWgc+wnouLxVJzPZlfwLcn2KkXOF1yqY=
+=0A3G
+-----END PGP SIGNATURE-----

Added: dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip.sha512
==============================================================================
--- dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip.sha512 (added)
+++ dev/commons/csv/1.6-RC1/binaries/commons-csv-1.6-bin.zip.sha512 Wed Sep 19 11:57:06 2018
@@ -0,0 +1 @@
+18acd88a45fdfe3f6fd7133f5053263e3c36c6eacde14eb34c269ddce6bb212477ed0b536295d2db3a282acce8d5f30a119709e9a0979400ec3ff906b5633d24
\ No newline at end of file

Added: dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz.asc
==============================================================================
--- dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz.asc (added)
+++ dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz.asc Wed Sep 19 11:57:06 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEzVRkMV8LmMd+bo7NnarcHJ/MgtAFAluiN98ACgkQnarcHJ/M
+gtBhyg/5Aam549NrHSV4Z0/X/zQk0GRBkVJVfq0yFjuUklKDfeXK1rzEltqrv1AS
+lEg8Q2o4A68btUC8KJL1tfXzNpgWGoPSvq2yyqjrciU0vkE5KdRmoKrR/6TR5Bk4
+/OBjqlLf+X3a2klKsysnXz1ygZaemEKJhiX88dz/yIyL6gkX2uexNlwq1UpIuA0T
+Drv2X9yTJy5TUuxX0LoA05wY1UUf+1uym8PURKPUnfIUIPMQRrNHcNX1RBumNYgn
++WlCaSMJlzdL3aRMGowVrVkApxl+bSfN1Ao7nkmpfUl6y+0Jm0Ta2+f9iscGApOP
+TkEopbuTVpJEZ9W0r74FDW+0Ci1V1R3X/2EZp+zz6FNhE6BCS+JjpipatAQkPsWX
+Rixp8zX9zZZ3WN4xY2+9/efKXJRxq9rwHtzkIRwJzH0hYjcolgbK1bsxnx+AGu1s
+dzTheys0kc1hImlCjOYiXMxQxcdefN46MGOInavRodKsS+jk7khbvXoQ3M9PtM+D
+M2xB86epHeECzZELjLD9uj/pJmb7keUkiLrZrUzWaQUYZdUf9et5Ja/ILzenhdTu
+yH2vm/bjZwBEY4LVIc/o5hYvLybXqEYlKUjtcwpNTEjoWnAnzYPFOhc69uMagFHA
+lIFEz8SpK5l/A5dgBaAG2e89qXuE4DmesirQalOBAllTtdXNIrE=
+=OHlm
+-----END PGP SIGNATURE-----

Added: dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz.sha512
==============================================================================
--- dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz.sha512 (added)
+++ dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.tar.gz.sha512 Wed Sep 19 11:57:06 2018
@@ -0,0 +1 @@
+5ede660228b3e1ff2e5f955a032d6dc51979b27f05fa5d4ef9c9319264f30bd59583fd634e2adf31fcf3b44a58a30afaa1452a40cc63897119d5f865c666a3f3
\ No newline at end of file

Added: dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip.asc
==============================================================================
--- dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip.asc (added)
+++ dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip.asc Wed Sep 19 11:57:06 2018
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEzVRkMV8LmMd+bo7NnarcHJ/MgtAFAluiN98ACgkQnarcHJ/M
+gtBIXQ//TcmsiaMKBHJHqe9efIMTJnPvcdjmGWqzPal4KXtxiYaijyoDjtcrjn1p
+o+TCCp/s/+imfJgJLjIa1Z9o0g0AKkcADI6q1H6mYtMw4NCl34ZA0RfDaAvsFlw8
+swI60R27EVvonEgse/VVCZSehShLVEjO/yG+W4mTkDmZyDrtbkdI3eG4eXwzIVb6
+GUcnBGqGD2SpzrgOFizntGOXV6rWcjER3U5hLdZkFmYlwuApypCW0p35WndE8A8x
+qYnJVLEVERWnZIT4M2Ek4+1kY0BkVuDv68nrHcqAkCX7rAZ/p9I8rYwvJzDIAWKq
+awlTu9pobMFsFD6fDThADIjAui78N5IhG6BpkH+8VAyYuRGSsiIpDWLDFH4F0Jvu
+X5Ns98GeomLdbS4iYh2Nzx/sAroa0xmDTiKeBHa3geUB294fGdefk58b+Ah8oOBD
+/EbI+VWtHk5IpLdGrbImdGPf+roB1TF6AgOofXIeEE9c17YkgZGUfDrAsnI8w2dc
+9240o1GjTLVRqZW7t2ajJazf+isPIZ8SRDWtfWiEdMhQhmUQ7BLMPqLiea4c7Qup
+q+udzsPe2EaXDbBDOh+RshCgViLmVpG8XuEWT+LEu5J+bs2Tlt/L1LynhZr/m+tC
+/FeVngjKUNNQp55idlkpqiPzBY7dQhdmfM+ROhUh6wLhGo+Qc+o=
+=pgIa
+-----END PGP SIGNATURE-----

Added: dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip.sha512
==============================================================================
--- dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip.sha512 (added)
+++ dev/commons/csv/1.6-RC1/source/commons-csv-1.6-src.zip.sha512 Wed Sep 19 11:57:06 2018
@@ -0,0 +1 @@
+a852175a5529152211122a6127676c7fcdc50def577fb7d09cbd1887ca63f695ca62f3cd23450d59d11c1a4055fb8fe8210ed2ff8bda1165b325b6356866b926
\ No newline at end of file