* The difference from RC1 to RC2 is the update to src/assembly/src.xml *

We have fixed quite a few bugs and added some significant enhancements
since Apache Commons IO 2.7 was released, so I would like to release Apache
Commons IO 2.8.0.

Apache Commons IO 2.8.0 RC2 is available for review here:
    https://dist.apache.org/repos/dist/dev/commons/io/2.8.0-RC2 (svn
revision 41331)

The Git tag commons-io-2.8.0-RC2 commit for this RC is
fa59009aaabcf8671a8d741993ef355f42b95ccd which you can browse here:

https://gitbox.apache.org/repos/asf?p=commons-io.git;a=commit;h=fa59009aaabcf8671a8d741993ef355f42b95ccd
You may checkout this tag using:
    git clone https://gitbox.apache.org/repos/asf/commons-io.git --branch
commons-io-2.8.0-RC2 commons-io-2.8.0-RC2

Maven artifacts are here:

https://repository.apache.org/content/repositories/orgapachecommons-1527/commons-io/commons-io/2.8.0/

These are the artifacts and their hashes:

#Release SHA-512s
#Sun Sep 06 09:54:50 EDT 2020
commons-io-2.8.0-bin.tar.gz=9a69148c329eda67295718e58b4ff69c9d4548ec50435b9a7d42f543cac6847901ebe405267e33cb0ae77a790d9d92452fb39b66ceba9884fc96468b062a5ae4
commons-io-2.8.0-bin.zip=9a2f878f546d661fbdc6b4f76d39ca7f3b9801b495f05e15645d9a9a994287f5496c19b30ab52d014688e7837fe9d4ad9cd7d51e5f799b6eab7d0d894d69c012
commons-io-2.8.0-javadoc.jar=650baa53c7e7d18bf5e0a96c2b2d1f64c0b30eaff9bcfc87f16315e14c1974bd7e7a5e26b08d3043ae042d03c12c4ea755f37cd6d6b1c8b0c287238b776d0e5f
commons-io-2.8.0-sources.jar=395c9f1ea5e57e72cdeb3d04a974b6f36751b08477548d68a52107f35f40831fac34f33b8de9da4fedd9e28ca08462c742f412e19624ee9cc1798ff68600ef1a
commons-io-2.8.0-src.tar.gz=6189c72eff8661bfb8cfed95dd7ee32578b24b50f6586d4628a4dbfd3618853a72eb73da311729e55742ace47b2d38d3ce130ab87b684494d8ce33d1ccf14a2d
commons-io-2.8.0-src.zip=91c8d43f6713bd4b4e5bfc5468dcae2eaeddc9bce156c5268120238b0492a9aac6eb8cf3fe5504758df8f11d9b612ee9b754c4f0381b601069b7293db25a1242
commons-io-2.8.0-test-sources.jar=5d3f10fc8bd6feb99a9bba4d687c2da676186297064f091893ed297f179e18c55e8f54ea8d626781952188ca92a246a8686b98bd333de70a36e361d4682dd34d
commons-io-2.8.0-tests.jar=6a7b382fd6ea6a6f03d86fdb3341d0bacbd1f7388e55d37aaf99ab156b19a525c0149efcba6d426e61663ee26915b8cfef83e68b545fbd2d7d56c0b84bd318ca


I have tested this with

mvn -V -Duser.name=$my_apache_id
-Dcommons_release_plugin_version=$commons_release_plugin_version -Prelease
-Ptest-deploy -P jacoco -P japicmp clean package site deploy

using:

Maven home: /usr/local/Cellar/maven/3.6.3_1/libexec
Java version: 1.8.0_265, vendor: AdoptOpenJDK, runtime:
/Library/Java/JavaVirtualMachines/adoptopenjdk-8.jdk/Contents/Home/jre
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.15.6", arch: "x86_64", family: "mac"

Details of changes since 2.7 are in the release notes:

https://dist.apache.org/repos/dist/dev/commons/io/2.8.0-RC2/RELEASE-NOTES.txt

https://dist.apache.org/repos/dist/dev/commons/io/2.8.0-RC2/site/changes-report.html

Site:

https://dist.apache.org/repos/dist/dev/commons/io/2.8.0-RC2/site/index.html
    (note some *relative* links are broken and the 2.8.0 directories are
not yet created - these will be OK once the site is deployed.)

*** JApiCmp Report (compared to 2.7):

https://dist.apache.org/repos/dist/dev/commons/io/2.8.0-RC2/site/japicmp.html

RAT Report:

https://dist.apache.org/repos/dist/dev/commons/io/2.8.0-RC2/site/rat-report.html

KEYS:
  https://www.apache.org/dist/commons/KEYS

Please review the release candidate and vote.
This vote will close no sooner than 72 hours from now.

  [ ] +1 Release these artifacts
  [ ] +0 OK, but...
  [ ] -0 OK, but really should fix...
  [ ] -1 I oppose this release because...

Thank you,

Gary Gregory,
Release Manager (using key 86fdc7e2a11262cb)

For following is intended as a helper and refresher for reviewers.

Validating a release candidate
==============================

These guidelines are NOT complete.

Requirements: Git, Java, Maven.

You can validate a release from a release candidate (RC) tag as follows.

1) Clone and checkout the RC tag

git clone https://gitbox.apache.org/repos/asf/commons-io.git --branch
commons-io-2.8.0-RC2 commons-io-2.8.0-RC2
cd commons-io-2.8.0-RC2

2) Check Apache licenses

This step is not required if the site includes a RAT report page which you
then must check.

mvn apache-rat:check

3) Check binary compatibility

Older components still use Apache Clirr:

This step is not required if the site includes a Clirr report page which
you then must check.

mvn clirr:check

Newer components use JApiCmp with the japicmp Maven Profile:

This step is not required if the site includes a JApiCmp report page which
you then must check.

mvn install -DskipTests -P japicmp japicmp:cmp

4) Build the package

mvn -V clean package

You can record the Maven and Java version produced by -V in your VOTE reply.
To gather OS information from a command line:
Windows: ver
Linux: uname -a

5) Build the site for a single module project

Note: Some plugins require the components to be installed instead of
packaged.

mvn site
Check the site reports in:
- Windows: target\site\index.html
- Linux: target/site/index.html

-the end-

Reply via email to