Author: bodewig Date: Sun Oct 5 17:08:55 2014 New Revision: 1629511 URL: http://svn.apache.org/r1629511 Log: Creating COMPRESS-1.9-RC1 tag
Added: commons/proper/compress/tags/COMPRESS-1.9-RC1/ (props changed) - copied from r1629505, commons/proper/compress/trunk/ Modified: commons/proper/compress/tags/COMPRESS-1.9-RC1/RELEASE-NOTES.txt commons/proper/compress/tags/COMPRESS-1.9-RC1/pom.xml commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/site.xml commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/xdoc/download_compress.xml commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/xdoc/index.xml Propchange: commons/proper/compress/tags/COMPRESS-1.9-RC1/ ------------------------------------------------------------------------------ --- subclipse:tags (added) +++ subclipse:tags Sun Oct 5 17:08:55 2014 @@ -0,0 +1,2 @@ +1152546,COMPRESS_1.2,/commons/proper/compress/tags/COMPRESS_1.2,tag +1196226,COMPRESS_1.3,/commons/proper/compress/tags/COMPRESS_1.3,tag Propchange: commons/proper/compress/tags/COMPRESS-1.9-RC1/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Sun Oct 5 17:08:55 2014 @@ -0,0 +1,8 @@ +target +*.iml +*.ipr +*.iws +.* +maven-eclipse.xml +TAGS +.projectile Propchange: commons/proper/compress/tags/COMPRESS-1.9-RC1/ ------------------------------------------------------------------------------ --- svn:mergeinfo (added) +++ svn:mergeinfo Sun Oct 5 17:08:55 2014 @@ -0,0 +1,9 @@ +/commons/proper/compress/branches/LZMA:1491183-1525352 +/commons/proper/compress/branches/zip64:1149597-1152684 +/commons/proper/compress/tags/COMPRESS-1.7:1559626 +/commons/proper/compress/tags/COMPRESS-1.7-RC1:1556795-1558770 +/commons/proper/compress/tags/COMPRESS-1.7-RC2:1558773-1559625 +/commons/proper/compress/tags/COMPRESS-1.8:1576959 +/commons/proper/compress/tags/COMPRESS-1.8-RC1:1575664-1576958 +/commons/proper/compress/tags/COMPRESS-1.8.1:1594542-1594543 +/commons/proper/compress/tags/COMPRESS-1.8.1-RC1:1593590-1594541 Modified: commons/proper/compress/tags/COMPRESS-1.9-RC1/RELEASE-NOTES.txt URL: http://svn.apache.org/viewvc/commons/proper/compress/tags/COMPRESS-1.9-RC1/RELEASE-NOTES.txt?rev=1629511&r1=1629505&r2=1629511&view=diff ============================================================================== --- commons/proper/compress/tags/COMPRESS-1.9-RC1/RELEASE-NOTES.txt (original) +++ commons/proper/compress/tags/COMPRESS-1.9-RC1/RELEASE-NOTES.txt Sun Oct 5 17:08:55 2014 @@ -2,12 +2,47 @@ Apache Commons Compress software defines an API for working with compression and archive formats. These include: bzip2, gzip, pack200, -lzma, xz, Snappy, traditional Unix Compress and ar, cpio, jar, tar, -zip, dump, 7z, arj. +lzma, xz, Snappy, traditional Unix Compress, DEFLATE and ar, cpio, +jar, tar, zip, dump, 7z, arj. -Release 1.8.1 +Release 1.9 +----------- -Changes in this version include: +New features: +o Added support for DEFLATE streams without any gzip framing. + Issue: COMPRESS-263. + Thanks to Matthias Stevens. + +Fixed Bugs: +o When reading 7z files unknown file properties and properties of type + kDummy are now ignored. + Issue: COMPRESS-287. +o Expanding 7z archives using LZMA compression could cause an + EOFException. + Issue: COMPRESS-286. +o Long-Name and -link or PAX-header entries in TAR archives always had + the current time as last modfication time, creating archives that + are different at the byte level each time an archive was built. + Issue: COMPRESS-289. + Thanks to Bob Robertson. + +Changes: +o Checking for XZ for Java may be expensive. The result will now be + cached outside of an OSGi environment. You can use the new + XZUtils#setCacheXZAvailability to overrride this default behavior. + Issue: COMPRESS-285. + +For complete information on Apache Commons Compress, including instructions +on how to submit bug reports, patches, or suggestions for improvement, +see the Apache Commons Compress website: + +http://commons.apache.org/compress/ + +Old Release Notes +================= + +Release 1.8.1 +------------- New features: o COMPRESS-272: CompressorStreamFactory can now auto-detect Unix compress @@ -36,15 +71,6 @@ o COMPRESS-280: Adapted TarArchiveInput Changes: o The dependency on org.tukaani:xz is now marked as optional. -For complete information on Apache Commons Compress, including instructions -on how to submit bug reports, patches, or suggestions for improvement, -see the Apache Commons Compress website: - -http://commons.apache.org/compress/ - -Old Release Notes -================= - Release 1.8 ----------- Modified: commons/proper/compress/tags/COMPRESS-1.9-RC1/pom.xml URL: http://svn.apache.org/viewvc/commons/proper/compress/tags/COMPRESS-1.9-RC1/pom.xml?rev=1629511&r1=1629505&r2=1629511&view=diff ============================================================================== --- commons/proper/compress/tags/COMPRESS-1.9-RC1/pom.xml (original) +++ commons/proper/compress/tags/COMPRESS-1.9-RC1/pom.xml Sun Oct 5 17:08:55 2014 @@ -25,7 +25,7 @@ <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> - <version>1.9-SNAPSHOT</version> + <version>1.9</version> <name>Apache Commons Compress</name> <url>http://commons.apache.org/proper/commons-compress/</url> <!-- The description is not indented to make it look better in the release notes --> @@ -135,9 +135,9 @@ Unix Compress, DEFLATE and ar, cpio, jar </contributors> <scm> - <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/compress/trunk</connection> - <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/trunk</developerConnection> - <url>http://svn.apache.org/repos/asf/commons/proper/compress/trunk</url> + <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.9</connection> + <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.9</developerConnection> + <url>http://svn.apache.org/repos/asf/commons/proper/compress/tags/COMPRESS-1.9</url> </scm> <build> Modified: commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/site.xml URL: http://svn.apache.org/viewvc/commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/site.xml?rev=1629511&r1=1629505&r2=1629511&view=diff ============================================================================== --- commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/site.xml (original) +++ commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/site.xml Sun Oct 5 17:08:55 2014 @@ -35,6 +35,7 @@ <item name="Download" href="/download_compress.cgi"/> <item name="Security Reports" href="/security.html"/> <item name="Wiki" href="http://wiki.apache.org/commons/Compress"/> + <item name="Javadoc 1.9" href="javadocs/api-1.9/index.html"/> <item name="Javadoc 1.8.1" href="javadocs/api-1.8.1/index.html"/> <item name="Javadoc 1.8" href="javadocs/api-1.8/index.html"/> <item name="Javadoc 1.7" href="javadocs/api-1.7/index.html"/> Modified: commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/xdoc/download_compress.xml URL: http://svn.apache.org/viewvc/commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/xdoc/download_compress.xml?rev=1629511&r1=1629505&r2=1629511&view=diff ============================================================================== --- commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/xdoc/download_compress.xml (original) +++ commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/xdoc/download_compress.xml Sun Oct 5 17:08:55 2014 @@ -95,32 +95,32 @@ limitations under the License. </p> </subsection> </section> - <section name="Apache Commons Compress 1.8.1 "> + <section name="Apache Commons Compress 1.9 "> <subsection name="Binaries"> <table> <tr> - <td><a href="[preferred]/commons/compress/binaries/commons-compress-1.8.1-bin.tar.gz">commons-compress-1.8.1-bin.tar.gz</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8.1-bin.tar.gz.md5">md5</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8.1-bin.tar.gz.asc">pgp</a></td> + <td><a href="[preferred]/commons/compress/binaries/commons-compress-1.9-bin.tar.gz">commons-compress-1.9-bin.tar.gz</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.9-bin.tar.gz.md5">md5</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.9-bin.tar.gz.asc">pgp</a></td> </tr> <tr> - <td><a href="[preferred]/commons/compress/binaries/commons-compress-1.8.1-bin.zip">commons-compress-1.8.1-bin.zip</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8.1-bin.zip.md5">md5</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.8.1-bin.zip.asc">pgp</a></td> + <td><a href="[preferred]/commons/compress/binaries/commons-compress-1.9-bin.zip">commons-compress-1.9-bin.zip</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.9-bin.zip.md5">md5</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/binaries/commons-compress-1.9-bin.zip.asc">pgp</a></td> </tr> </table> </subsection> <subsection name="Source"> <table> <tr> - <td><a href="[preferred]/commons/compress/source/commons-compress-1.8.1-src.tar.gz">commons-compress-1.8.1-src.tar.gz</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.8.1-src.tar.gz.md5">md5</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.8.1-src.tar.gz.asc">pgp</a></td> + <td><a href="[preferred]/commons/compress/source/commons-compress-1.9-src.tar.gz">commons-compress-1.9-src.tar.gz</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.9-src.tar.gz.md5">md5</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.9-src.tar.gz.asc">pgp</a></td> </tr> <tr> - <td><a href="[preferred]/commons/compress/source/commons-compress-1.8.1-src.zip">commons-compress-1.8.1-src.zip</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.8.1-src.zip.md5">md5</a></td> - <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.8.1-src.zip.asc">pgp</a></td> + <td><a href="[preferred]/commons/compress/source/commons-compress-1.9-src.zip">commons-compress-1.9-src.zip</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.9-src.zip.md5">md5</a></td> + <td><a href="https://www.apache.org/dist/commons/compress/source/commons-compress-1.9-src.zip.asc">pgp</a></td> </tr> </table> </subsection> Modified: commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/xdoc/index.xml URL: http://svn.apache.org/viewvc/commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/xdoc/index.xml?rev=1629511&r1=1629505&r2=1629511&view=diff ============================================================================== --- commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/xdoc/index.xml (original) +++ commons/proper/compress/tags/COMPRESS-1.9-RC1/src/site/xdoc/index.xml Sun Oct 5 17:08:55 2014 @@ -51,24 +51,19 @@ </section> <section name="Status"> - <p>The current release is 1.8.1 and requires Java 5.</p> + <p>The current release is 1.9 and requires Java 5.</p> <p>Below we highlight some new features, for a full list of changes see the <a href="changes-report.html">Changes Report</a>.</p> - <subsection name="What's new in 1.8.1?"> - <p>Compress 1.8.1 is a bug fix release with fixes for the - tar, ar and snappy formats as well as the - <code>IOUtils</code> class. In addition - <code>CompressorStreamFactory</code> can now autodetect - the .Z compress format.</p> - </subsection> - <subsection name="What's coming in 1.9?"> + <subsection name="What's new in 1.9?"> <ul> <li>support for raw DEFLATE streams</li> </ul> </subsection> + <!--subsection name="What's coming in 1.10?"> + </subsection--> </section> <section name="Documentation"> @@ -86,14 +81,14 @@ by the <code>java.util.jar</code> package of the Java class library. XZ and lzma support is provided by the public domain <a href="http://tukaani.org/xz/java.html">XZ for - Java</a> library. As of Commons Compress 1.8.1 support for + Java</a> library. As of Commons Compress 1.9 support for the lzma, Z and Snappy formats is read-only.</p> <p>The ar, arj, cpio, dump, tar, 7z and zip formats are supported as archivers where the <a href="zip.html">zip</a> implementation provides capabilities that go beyond the features found in java.util.zip. As of Commons Compress - 1.8.1 support for the dump and arj formats is + 1.9 support for the dump and arj formats is read-only - 7z can read most compressed and encrypted archives but only write unencrypted ones. LZMA(2) support in 7z requires <a href="http://tukaani.org/xz/java.html">XZ for