You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2017/08/27 04:55:05 UTC

svn commit: r21311 - /dev/commons/csv/CSV_1_5_RC1/

Author: kinow
Date: Sun Aug 27 04:55:04 2017
New Revision: 21311

Log:
Apache Commons CSV 1.5 RC1

Added:
    dev/commons/csv/CSV_1_5_RC1/
    dev/commons/csv/CSV_1_5_RC1/RELEASE-NOTES.txt
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz   (with props)
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.asc
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.md5
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.sha1
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip   (with props)
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.asc
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.md5
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.sha1
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz   (with props)
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.asc
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.md5
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.sha1
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip   (with props)
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.asc
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.md5
    dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.sha1

Added: dev/commons/csv/CSV_1_5_RC1/RELEASE-NOTES.txt
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/RELEASE-NOTES.txt (added)
+++ dev/commons/csv/CSV_1_5_RC1/RELEASE-NOTES.txt Sun Aug 27 04:55:04 2017
@@ -0,0 +1,332 @@
+                        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/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.asc
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.asc (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.asc Sun Aug 27 04:55:04 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJZogD5AAoJEFTidktIpC3wFdYP/01OjgbEXQ9EevXtdNfLSOwp
+W/pCUkvRXa0941t9Wi1u3V1BuaCxjHcPXbGoU/X1Km5aOlYpPD63eQhZZ/lgUvOW
++3VHPCAhi/wHXDb5OFlFZikBSh5nF2Sl9AF3J3fiGFtmpb81FSJjSBMGO6lKx06T
+8IF4e8Wr/DLmgPLkZor4cpmvfdnjBcU6UVfHJ2L4PjlgVolm/r8HhyqhFcayC44i
+OusnlS587+fcsfNI4qAPxjKMYh6CSbIVQazZTwD2h/Grs9xz+PoW+Dq4sOGrkEvN
+q9nRaJ6XQvl2Jdb7e0SRokI+To3nWtKiE3gVtqFs42/GfXBZK56PwPTfaZWbRr2F
+HeAF/4uyTDJwpunLe27y6/nQ/eCTy+ElKzUdlDBcwn7OhTbJf30r56KGPHeCAV5c
+ascXTejbudlU1P0pa77Qht6ttZeKFZudgQAQWTo0Wn8dvUFGLNNuU0S8TRXjg5XV
+vd2rBcKZwueVPg+7y5bfrjfC/3YzVIv7+7YL4S5H5Kq9v+EbghOlqTOZesKpYqEF
+yP+HM0YezKPAfMuPfkfzNBdFRBdRweUaW3m4nJJyzHmpMkgzohaPsCBM/iyH2azN
+dGzyexXFJ5MyYn2E+sNxRYitTmmBPv6ySlrhIWwHjnsJJ49bM4l8Xtx3DB160gSe
+G1H/zVnG6LPbajTe12P9
+=uipL
+-----END PGP SIGNATURE-----

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.md5
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.md5 (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.md5 Sun Aug 27 04:55:04 2017
@@ -0,0 +1 @@
+e48ade3913bef27620c2a4530b651384
\ No newline at end of file

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.sha1
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.sha1 (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.tar.gz.sha1 Sun Aug 27 04:55:04 2017
@@ -0,0 +1 @@
+4c2a4cde27c556f808c9999d354807579a208fcf
\ No newline at end of file

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.asc
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.asc (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.asc Sun Aug 27 04:55:04 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJZogD7AAoJEFTidktIpC3wNU0P/034KW/G56unPOhJ6yNOIrgm
+e2CFaFeR7be1f130e+TIDbvflFdB89FS9dtCaApqp4TtLwVULXQhuU+XkH4z1erJ
+os27bBJDZ2Uro77v6I3FtmwH1UvrnsVzg4tRyvhNy8UOX6vs8TkjSoJMfVa7ndGI
+O4kjbTcOTSdW6F/cdhdk7lxQ4EQNXaIAWPsmg5/PqhnF206xUkUqqlI+YhqZ9JKo
+00vMk+D8VjswlAZz2iFOXvI3reWUp4/rBGbedE3ALz4D4IbXSl1THhYj+L3UZqrC
+0czWIddt3spBcmsgh1nHutQRmRd1po8oVGe5RnKUCSQt70+YOciXJmWenfNDCflj
+NArb4rxgKA8T9e21LmfBMZB0P0xx2jov7hVa9csuD55Nu9Qng9N6Qxp7y/Z5ieYk
+EJGjV0jmHG0aNo3P0+6weWfbHHOLwF9jSyotn2zdr5ri6fOIt0uEmGWOxCq7Ntr6
+8X4DdaYiJ7usAclMJB9xOLkyGEICsqdkjQzpFrTDQMTQ448uiBjYWHUyYprvkSxu
+zZGp7FpT9zCTzqVXl/w7Ida818Qhot386GRvP3Z7l5XnkUS8uw4gUrLGjj597v3/
+DcpCxqhhh66q9XC4Z6Gz0Re2siDfzTF0E7Vt+grtM97q5QGcS5DpLeHGfVxm6PN3
+VX77Mhh//0Txx9k8jr0p
+=fbF0
+-----END PGP SIGNATURE-----

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.md5
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.md5 (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.md5 Sun Aug 27 04:55:04 2017
@@ -0,0 +1 @@
+0ac6a69c5fa86c6bf4c333cfd57b10e1
\ No newline at end of file

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.sha1
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.sha1 (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-bin.zip.sha1 Sun Aug 27 04:55:04 2017
@@ -0,0 +1 @@
+fea9c15a06e1f660b2bba30a5fba44a76492c02e
\ No newline at end of file

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.asc
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.asc (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.asc Sun Aug 27 04:55:04 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJZogD8AAoJEFTidktIpC3wpykQAKsznn/vCdq9WXgKAhfXZ8f/
+rQ7ujsDyPSSjT0MS0iOaWymruSHZmu7h8nRlJctMs4OdFqYw2DeOfOECiZkxD+nC
+AJxezgjvHiB6TsvnvvsXXz/W+IfmN5DKjjg1NV2W3shjdWN5B7+yT3p+u5WarCt0
+DgDOHxXKoxEyMFLQNcfSM5xerD/nJH7srGNJcujFShxFJC9eTVaOGEPnxQyw43EU
+PMY2Ihhm8kTJStCBGZBfaGrbn7Ssq0RfGlpglktXerZdNgYQFkM5XZIbbehQYM0K
+7ZIQYzthQ+uatRz2xme7r2ZwWAo//Kd3Zcqeu0/PIfJ39NqvxgHVYIflh9OFfRPP
+rjviAq/Suu1fdkusgKeu5I+iT9fMyereReSsG53upPltP7S/MUcD0P7Yw1ZeaIjH
+RQ8El0rA+oL/wARWvrU2VdR79d+2JxylZKEDuL3wItRjn1aeYDfJwmaIdkiNr6c7
+j4W2c0jSWWPAfKJRj4KFlbH1+zJBMac9nyyi3UDYIPfY7/V1Sc63j0diKsJ8ts//
+ZKji4rBYQVBgG0nM/3P6RgwoHg87VbK/4zuX9RL/oYnJa/RzwyiGp4TxA9YgkNQw
+SWTje2apV82CGnnWBr27Y6kClvLvvorl9BldsUroW2FLMq+KXsW4xCcQVLAshGLj
+q5YUnwUC4wD8oGra07/r
+=1P9f
+-----END PGP SIGNATURE-----

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.md5
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.md5 (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.md5 Sun Aug 27 04:55:04 2017
@@ -0,0 +1 @@
+d098b69b82318a80854c70defbaec072
\ No newline at end of file

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.sha1
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.sha1 (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.tar.gz.sha1 Sun Aug 27 04:55:04 2017
@@ -0,0 +1 @@
+e2c83f040fdfdb868184c019624d20b79113e004
\ No newline at end of file

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.asc
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.asc (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.asc Sun Aug 27 04:55:04 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJZogD+AAoJEFTidktIpC3wMXMP+gJ1sT0AkCfDUbjZpxdYXGm7
+ewtYoLsN4olBvnMQW52wauFqQeGqR2s+bRw91LdVLJ25QmbbDbOTLtnJmTmyT+YX
+w6qk8kSSDMVSeVLKp5sCnZtJZVUQhOL70wRM8XCn7gDIb1bJGWoi2IZeZ72BJNUY
+5cr9CTe+h21RtxfA1Fwf59WiwvW3TiqhM07ztzlwA67jH/gFpGlOhHbivg6nY8cB
+Tfx/uQcXO8cMAZf3A9u6X19YswqZ9gdCYPD3sml3b8KqXHyASw4UshWBk94ayy/E
+3dYe7J3x0nE0XrM7xLT+edXGgACk3PwAOIsObZiC7sLbE2pG8ZyTkZeWbhNjn2eC
+ce2I6pIX3nKzXBr3+QGmEDIURcZC9jHN+pYS9Liemws1eSlyXs/7Wzef/+EaX0Gq
+qljj/5rJ60SjfdByAkm1fxxPS1zPmEvBmEMswfyjuQqh6eLoa92d5zOCyQ3RIpho
+TNUSHjlsI/rR1ymAtj+y6xVT4K7UXSdp4cm6F7LjRSfStGEOvPcN8B+m8uDJ3W+q
+BmkKQFSP8w+n4xSk6iP0v+UtjO04W2nwQ5md3IJhCpvft1QUHLzSlbghGYY+fx08
+CYeRYozg4BHLdJbcpH5xQ2zhIYiqW716PbfaVuQjLFdZQxOGDlcVX6o31kTZoIh7
+x/KfVMsl7kL5foeLkMsL
+=D6Am
+-----END PGP SIGNATURE-----

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.md5
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.md5 (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.md5 Sun Aug 27 04:55:04 2017
@@ -0,0 +1 @@
+700e159c161eafbceaaa711f74b11587
\ No newline at end of file

Added: dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.sha1
==============================================================================
--- dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.sha1 (added)
+++ dev/commons/csv/CSV_1_5_RC1/commons-csv-1.5-src.zip.sha1 Sun Aug 27 04:55:04 2017
@@ -0,0 +1 @@
+22f009e0e7be51c3c61fa667c02ac1822276c7b8
\ No newline at end of file