Thanks to those who voted for RC2, hopefully this will be OK

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

Apache Commons Validator 1.7 RC3 is available for review here:
    https://dist.apache.org/repos/dist/dev/commons/validator/1.7-RC3
(svn revision 40841)

The Git tag VALIDATOR_1_7_RC3 commit for this RC is
f9bb21748a9f9c50fbc31862de25ed49433ecc88 which you can browse here:
    
https://gitbox.apache.org/repos/asf?p=commons-validator.git;a=commit;h=f9bb21748a9f9c50fbc31862de25ed49433ecc88
You may checkout this tag using:
    git clone https://gitbox.apache.org/repos/asf/commons-validator.git
--branch VALIDATOR_1_7_RC3 VALIDATOR_1_7_RC3

Maven artifacts are here:
    
https://repository.apache.org/content/repositories/orgapachecommons-1520/commons-validator/commons-validator/1.7/

These are the artifacts and their hashes:

#Release SHA-512s
#Mon Aug 03 17:52:07 BST 2020
commons-validator-1.7-bin.tar.gz=c2f8ae044aeb3b078420189cde83ab5ed92fc6ea0d080099b187d8be3ace872e5bce4c020945cd9b0084a3ae7d746c1462acf4c397fe700ca4e4bccb8f1f601d
commons-validator-1.7-bin.zip=a1450772ba23c4d8f52c7611271987a560b2419343bd60f9870af9de2a5c28bffb17bcb8bd31c16352b98124950b7b51abda742a9b1f9c6daaf0274e57276d13
commons-validator-1.7-javadoc.jar=5ffb10492960e13f9902c88051888590dca67ac3332bcf53bb1108d5d4c26a8acb5eef134a498556d4c7214efb25539a3acabf46d2afaef1756375229824b419
commons-validator-1.7-sources.jar=dcda50175444f68800a952ada033a7903b61af775f0d788d8f6c937debacb38d90f0a9a4a4b78d679c2659777eaf1b688c84ce100b7f77631a4a20d5c6df9719
commons-validator-1.7-src.tar.gz=4007872fda856e9e154f325270748081920d21a716143389713706ca0e5a8ec3c88b9b978d75801a5926723764a81f1dbfd77a8fd4b361b16cd65e84cf47a868
commons-validator-1.7-src.zip=996c4d8e2e1c1f08ed011343c88bcaae1cd15a3b1d30535df456d366768760ddb9b4655ac3057727dc12aa30b69c66534795740b94c28a7fa2f0af885ef2b299
commons-validator-1.7-test-sources.jar=62880ed9c39809c40ff53ece2eba545fdaf2ae86ca7416dd3eb3d376ee53a3bd84b32d7672e1d9208b5b80c121e6db88959e714ef84d707232ab10aac991c5ec
commons-validator-1.7-tests.jar=83b7f39d9d2870f2e8d907cfdb4b6510d53eb3c9c9ed4adad0be25ef2acdb0ab86ded9448cb4013cf9889c36f14ae236367c0148d6ca6fdce8d543e2569d9e48


I have tested this with 'mvn clean install -Pjacoco -Pjapicmp site
deploy -Prelease -Pjava-1.7' using:

Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe;
2018-06-17T19:33:14+01:00)
Maven home: /opt/apache-maven-3.5.4
Java version: 1.8.0_261, vendor: Oracle Corporation, runtime:
/Library/Java/JavaVirtualMachines/jdk1.8.0_261.jdk/Contents/Home/jre
Default locale: en_GB, platform encoding: UTF-8
OS name: "mac os x", version: "10.15.6", arch: "x86_64", family: "mac"

Details of changes since 1.6 are in the release notes:
    
https://dist.apache.org/repos/dist/dev/commons/validator/1.7-RC3/RELEASE-NOTES.txt
    
https://dist.apache.org/repos/dist/dev/commons/validator/1.7-RC3/site/changes-report.html

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

JApiCmp Report (compared to 1.6):
    
https://dist.apache.org/repos/dist/dev/commons/validator/1.7-RC3/site/japicmp.html

RAT Report:
    
https://dist.apache.org/repos/dist/dev/commons/validator/1.7-RC3/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,

Sebb,
Release Manager (using key 4FAD5F62)

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-validator.git
--branch VALIDATOR_1_7_RC3 VALIDATOR_1_7_RC3
cd VALIDATOR_1_7_RC3

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

6) Build the site for a multi-module project

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

-the end-

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org
For additional commands, e-mail: dev-h...@commons.apache.org

Reply via email to