You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by Gary Gregory <ga...@gmail.com> on 2021/07/24 15:56:33 UTC

[VOTE] Release Apache Commons CSV 1.9.0 based on RC1

We have fixed a few bugs and added some enhancements since Apache
Commons CSV 1.8 was released, so I would like to release Apache
Commons CSV 1.9.0.

Apache Commons CSV 1.9.0 RC1 is available for review here:
    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1 (svn
revision 48979)

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

Maven artifacts are here:
    https://repository.apache.org/content/repositories/orgapachecommons-1558/org/apache/commons/commons-csv/1.9.0/

These are the artifacts and their hashes:

#Release SHA-512s
#Sat Jul 24 11:41:46 EDT 2021
commons-csv-1.9.0-bin.tar.gz=0b6ecb1c14c8745a10bfb2d1813446eee3dc1c44c72e14419ae0b15dd6e717f336c76a28f7664f083a70e71ad43346dc9cc555b2cd851899a089fad13f76be19
commons-csv-1.9.0-bin.zip=69f12e5b65636ff3f6d5d119920c8570ce603b975869c5f89b7f1ce5f061a11d8dba28508e4b927ae8d2f0c7cda98934582a2f8befee9865323432df86cec2ab
commons-csv-1.9.0-javadoc.jar=15fc0bf7325db35abcb4c586df0e92521322e57e30338aa653a62460281a7cb3dedfdb770d176451ce5fef4eaf965bcf91103bc8b3d8383c107382444672ac35
commons-csv-1.9.0-sources.jar=5ff2ce4e1662cba7c38d7922f418fded2e1b9ffdb64cd78f0a86b89c0d3d366a1e248f554219a2103478c365785ed9f1a9b38d218a2da3ff535a82f23ca08a68
commons-csv-1.9.0-src.tar.gz=4610197fbbf1b3fb3ff19ff8f5ee0ffe945c34c05e3db71b89156bf17aa7f6b2816ddace85457fec82cb22337f777e08eac5984d7299e702b537f0d242d368d8
commons-csv-1.9.0-src.zip=2903e0d47a006d68bdcd33e8a2ea30b5858ac43176a72e804f917a3f4e170e03fc66949d895e124420aa9106794fbdee4787b088b130c23ac636f9aa376f793a
commons-csv-1.9.0-test-sources.jar=7ac545c663f2b2ee824a18acbadfcbda19f85306ed71417cabe7c7acb9e221fdaada5c5f7946bfe5ebf4c046a2a516b1c51a4cf90244c609b1e478b933c0c62b
commons-csv-1.9.0-tests.jar=b29eca481fb7e8e64eec1fe4621dc8c0da7ac51480316d82a42dc73a8f99bbf64811cb948c4cab64b523890a0e8438af4e85dc6c51f14c554a4d0e0752eb6b2a

I have tested this with 'mvn -V -Prelease -Ptest-deploy -P jacoco -P
japicmp clean package site deploy' using:

Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
Maven home: /usr/local/Cellar/maven/3.8.1/libexec
Java version: 1.8.0_292, 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.16", arch: "x86_64", family: "mac"

Details of changes since 1.8 are in the release notes:
    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/RELEASE-NOTES.txt
    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/changes-report.html

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

JApiCmp Report (compared to 1.8):
    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/japicmp.html

RAT Report:
    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/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-csv.git --branch
commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
cd commons-csv-1.9.0-RC1

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-

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


Re: [VOTE] Release Apache Commons CSV 1.9.0 based on RC1

Posted by Gary Gregory <ga...@gmail.com>.
This RC VOTE passes with the following votes:

- Bruno P. Kinoshita, binding vote.
- Arturo Bernal, non-binding vote.
- Henri Biestro, binding vote.
- Gary Gregory, binding vote.

Gary

On Fri, Jul 30, 2021 at 10:45 AM Gary Gregory <ga...@gmail.com> wrote:
>
> My + 1.
>
> Gary
>
> On Sat, Jul 24, 2021 at 11:56 AM Gary Gregory <ga...@gmail.com> wrote:
> >
> > We have fixed a few bugs and added some enhancements since Apache
> > Commons CSV 1.8 was released, so I would like to release Apache
> > Commons CSV 1.9.0.
> >
> > Apache Commons CSV 1.9.0 RC1 is available for review here:
> >     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1 (svn
> > revision 48979)
> >
> > The Git tag commons-csv-1.9.0-RC1 commit for this RC is
> > 8e25a2b30cae841101540c26ff21b79c51ad3eff which you can browse here:
> >     https://gitbox.apache.org/repos/asf?p=commons-csv.git;a=commit;h=8e25a2b30cae841101540c26ff21b79c51ad3eff
> > You may checkout this tag using:
> >     git clone https://gitbox.apache.org/repos/asf/commons-csv.git
> > --branch commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
> >
> > Maven artifacts are here:
> >     https://repository.apache.org/content/repositories/orgapachecommons-1558/org/apache/commons/commons-csv/1.9.0/
> >
> > These are the artifacts and their hashes:
> >
> > #Release SHA-512s
> > #Sat Jul 24 11:41:46 EDT 2021
> > commons-csv-1.9.0-bin.tar.gz=0b6ecb1c14c8745a10bfb2d1813446eee3dc1c44c72e14419ae0b15dd6e717f336c76a28f7664f083a70e71ad43346dc9cc555b2cd851899a089fad13f76be19
> > commons-csv-1.9.0-bin.zip=69f12e5b65636ff3f6d5d119920c8570ce603b975869c5f89b7f1ce5f061a11d8dba28508e4b927ae8d2f0c7cda98934582a2f8befee9865323432df86cec2ab
> > commons-csv-1.9.0-javadoc.jar=15fc0bf7325db35abcb4c586df0e92521322e57e30338aa653a62460281a7cb3dedfdb770d176451ce5fef4eaf965bcf91103bc8b3d8383c107382444672ac35
> > commons-csv-1.9.0-sources.jar=5ff2ce4e1662cba7c38d7922f418fded2e1b9ffdb64cd78f0a86b89c0d3d366a1e248f554219a2103478c365785ed9f1a9b38d218a2da3ff535a82f23ca08a68
> > commons-csv-1.9.0-src.tar.gz=4610197fbbf1b3fb3ff19ff8f5ee0ffe945c34c05e3db71b89156bf17aa7f6b2816ddace85457fec82cb22337f777e08eac5984d7299e702b537f0d242d368d8
> > commons-csv-1.9.0-src.zip=2903e0d47a006d68bdcd33e8a2ea30b5858ac43176a72e804f917a3f4e170e03fc66949d895e124420aa9106794fbdee4787b088b130c23ac636f9aa376f793a
> > commons-csv-1.9.0-test-sources.jar=7ac545c663f2b2ee824a18acbadfcbda19f85306ed71417cabe7c7acb9e221fdaada5c5f7946bfe5ebf4c046a2a516b1c51a4cf90244c609b1e478b933c0c62b
> > commons-csv-1.9.0-tests.jar=b29eca481fb7e8e64eec1fe4621dc8c0da7ac51480316d82a42dc73a8f99bbf64811cb948c4cab64b523890a0e8438af4e85dc6c51f14c554a4d0e0752eb6b2a
> >
> > I have tested this with 'mvn -V -Prelease -Ptest-deploy -P jacoco -P
> > japicmp clean package site deploy' using:
> >
> > Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
> > Maven home: /usr/local/Cellar/maven/3.8.1/libexec
> > Java version: 1.8.0_292, 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.16", arch: "x86_64", family: "mac"
> >
> > Details of changes since 1.8 are in the release notes:
> >     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/RELEASE-NOTES.txt
> >     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/changes-report.html
> >
> > Site:
> >     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/index.html
> >     (note some *relative* links are broken and the 1.9.0 directories
> > are not yet created - these will be OK once the site is deployed.)
> >
> > JApiCmp Report (compared to 1.8):
> >     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/japicmp.html
> >
> > RAT Report:
> >     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/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-csv.git --branch
> > commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
> > cd commons-csv-1.9.0-RC1
> >
> > 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-

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


Re: [VOTE] Release Apache Commons CSV 1.9.0 based on RC1

Posted by Gary Gregory <ga...@gmail.com>.
My + 1.

Gary

On Sat, Jul 24, 2021 at 11:56 AM Gary Gregory <ga...@gmail.com> wrote:
>
> We have fixed a few bugs and added some enhancements since Apache
> Commons CSV 1.8 was released, so I would like to release Apache
> Commons CSV 1.9.0.
>
> Apache Commons CSV 1.9.0 RC1 is available for review here:
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1 (svn
> revision 48979)
>
> The Git tag commons-csv-1.9.0-RC1 commit for this RC is
> 8e25a2b30cae841101540c26ff21b79c51ad3eff which you can browse here:
>     https://gitbox.apache.org/repos/asf?p=commons-csv.git;a=commit;h=8e25a2b30cae841101540c26ff21b79c51ad3eff
> You may checkout this tag using:
>     git clone https://gitbox.apache.org/repos/asf/commons-csv.git
> --branch commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
>
> Maven artifacts are here:
>     https://repository.apache.org/content/repositories/orgapachecommons-1558/org/apache/commons/commons-csv/1.9.0/
>
> These are the artifacts and their hashes:
>
> #Release SHA-512s
> #Sat Jul 24 11:41:46 EDT 2021
> commons-csv-1.9.0-bin.tar.gz=0b6ecb1c14c8745a10bfb2d1813446eee3dc1c44c72e14419ae0b15dd6e717f336c76a28f7664f083a70e71ad43346dc9cc555b2cd851899a089fad13f76be19
> commons-csv-1.9.0-bin.zip=69f12e5b65636ff3f6d5d119920c8570ce603b975869c5f89b7f1ce5f061a11d8dba28508e4b927ae8d2f0c7cda98934582a2f8befee9865323432df86cec2ab
> commons-csv-1.9.0-javadoc.jar=15fc0bf7325db35abcb4c586df0e92521322e57e30338aa653a62460281a7cb3dedfdb770d176451ce5fef4eaf965bcf91103bc8b3d8383c107382444672ac35
> commons-csv-1.9.0-sources.jar=5ff2ce4e1662cba7c38d7922f418fded2e1b9ffdb64cd78f0a86b89c0d3d366a1e248f554219a2103478c365785ed9f1a9b38d218a2da3ff535a82f23ca08a68
> commons-csv-1.9.0-src.tar.gz=4610197fbbf1b3fb3ff19ff8f5ee0ffe945c34c05e3db71b89156bf17aa7f6b2816ddace85457fec82cb22337f777e08eac5984d7299e702b537f0d242d368d8
> commons-csv-1.9.0-src.zip=2903e0d47a006d68bdcd33e8a2ea30b5858ac43176a72e804f917a3f4e170e03fc66949d895e124420aa9106794fbdee4787b088b130c23ac636f9aa376f793a
> commons-csv-1.9.0-test-sources.jar=7ac545c663f2b2ee824a18acbadfcbda19f85306ed71417cabe7c7acb9e221fdaada5c5f7946bfe5ebf4c046a2a516b1c51a4cf90244c609b1e478b933c0c62b
> commons-csv-1.9.0-tests.jar=b29eca481fb7e8e64eec1fe4621dc8c0da7ac51480316d82a42dc73a8f99bbf64811cb948c4cab64b523890a0e8438af4e85dc6c51f14c554a4d0e0752eb6b2a
>
> I have tested this with 'mvn -V -Prelease -Ptest-deploy -P jacoco -P
> japicmp clean package site deploy' using:
>
> Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
> Maven home: /usr/local/Cellar/maven/3.8.1/libexec
> Java version: 1.8.0_292, 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.16", arch: "x86_64", family: "mac"
>
> Details of changes since 1.8 are in the release notes:
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/RELEASE-NOTES.txt
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/changes-report.html
>
> Site:
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/index.html
>     (note some *relative* links are broken and the 1.9.0 directories
> are not yet created - these will be OK once the site is deployed.)
>
> JApiCmp Report (compared to 1.8):
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/japicmp.html
>
> RAT Report:
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/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-csv.git --branch
> commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
> cd commons-csv-1.9.0-RC1
>
> 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-

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


Re: [VOTE] Release Apache Commons CSV 1.9.0 based on RC1

Posted by Henri Biestro <he...@apache.org>.

[x] +1 Release these artifacts

Built from tag using: 
 mvn -V clean test install site
Apache Maven 3.6.1 (d66c9c0b3152b2e69ee9bac180bb8fcc8e6af555; 2019-04-04T21:00:29+02:00)
Maven home: /Users/henri.biestro/Java/apache-maven-3.6.1
Java version: 1.8.0_202, vendor: Oracle Corporation, runtime: /Library/Java/JavaVirtualMachines/jdk1.8.0_202.jdk/Contents/Home/jre
Default locale: en_FR, platform encoding: UTF-8
OS name: "mac os x", version: "10.16", arch: "x86_64", family: "Mac"

Browsed site, Javadoc and reports, looks ok. 

Sorry fo the delay (vacation :-))

On 2021/07/29 12:41:58, Gary Gregory <ga...@gmail.com> wrote: 
> May I please have at least one more PMC review?
> 
> TY
> Gary

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


Re: [VOTE] Release Apache Commons CSV 1.9.0 based on RC1

Posted by Gary Gregory <ga...@gmail.com>.
May I please have at least one more PMC review?

TY
Gary

On Sat, Jul 24, 2021 at 11:56 AM Gary Gregory <ga...@gmail.com> wrote:
>
> We have fixed a few bugs and added some enhancements since Apache
> Commons CSV 1.8 was released, so I would like to release Apache
> Commons CSV 1.9.0.
>
> Apache Commons CSV 1.9.0 RC1 is available for review here:
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1 (svn
> revision 48979)
>
> The Git tag commons-csv-1.9.0-RC1 commit for this RC is
> 8e25a2b30cae841101540c26ff21b79c51ad3eff which you can browse here:
>     https://gitbox.apache.org/repos/asf?p=commons-csv.git;a=commit;h=8e25a2b30cae841101540c26ff21b79c51ad3eff
> You may checkout this tag using:
>     git clone https://gitbox.apache.org/repos/asf/commons-csv.git
> --branch commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
>
> Maven artifacts are here:
>     https://repository.apache.org/content/repositories/orgapachecommons-1558/org/apache/commons/commons-csv/1.9.0/
>
> These are the artifacts and their hashes:
>
> #Release SHA-512s
> #Sat Jul 24 11:41:46 EDT 2021
> commons-csv-1.9.0-bin.tar.gz=0b6ecb1c14c8745a10bfb2d1813446eee3dc1c44c72e14419ae0b15dd6e717f336c76a28f7664f083a70e71ad43346dc9cc555b2cd851899a089fad13f76be19
> commons-csv-1.9.0-bin.zip=69f12e5b65636ff3f6d5d119920c8570ce603b975869c5f89b7f1ce5f061a11d8dba28508e4b927ae8d2f0c7cda98934582a2f8befee9865323432df86cec2ab
> commons-csv-1.9.0-javadoc.jar=15fc0bf7325db35abcb4c586df0e92521322e57e30338aa653a62460281a7cb3dedfdb770d176451ce5fef4eaf965bcf91103bc8b3d8383c107382444672ac35
> commons-csv-1.9.0-sources.jar=5ff2ce4e1662cba7c38d7922f418fded2e1b9ffdb64cd78f0a86b89c0d3d366a1e248f554219a2103478c365785ed9f1a9b38d218a2da3ff535a82f23ca08a68
> commons-csv-1.9.0-src.tar.gz=4610197fbbf1b3fb3ff19ff8f5ee0ffe945c34c05e3db71b89156bf17aa7f6b2816ddace85457fec82cb22337f777e08eac5984d7299e702b537f0d242d368d8
> commons-csv-1.9.0-src.zip=2903e0d47a006d68bdcd33e8a2ea30b5858ac43176a72e804f917a3f4e170e03fc66949d895e124420aa9106794fbdee4787b088b130c23ac636f9aa376f793a
> commons-csv-1.9.0-test-sources.jar=7ac545c663f2b2ee824a18acbadfcbda19f85306ed71417cabe7c7acb9e221fdaada5c5f7946bfe5ebf4c046a2a516b1c51a4cf90244c609b1e478b933c0c62b
> commons-csv-1.9.0-tests.jar=b29eca481fb7e8e64eec1fe4621dc8c0da7ac51480316d82a42dc73a8f99bbf64811cb948c4cab64b523890a0e8438af4e85dc6c51f14c554a4d0e0752eb6b2a
>
> I have tested this with 'mvn -V -Prelease -Ptest-deploy -P jacoco -P
> japicmp clean package site deploy' using:
>
> Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
> Maven home: /usr/local/Cellar/maven/3.8.1/libexec
> Java version: 1.8.0_292, 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.16", arch: "x86_64", family: "mac"
>
> Details of changes since 1.8 are in the release notes:
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/RELEASE-NOTES.txt
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/changes-report.html
>
> Site:
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/index.html
>     (note some *relative* links are broken and the 1.9.0 directories
> are not yet created - these will be OK once the site is deployed.)
>
> JApiCmp Report (compared to 1.8):
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/japicmp.html
>
> RAT Report:
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/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-csv.git --branch
> commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
> cd commons-csv-1.9.0-RC1
>
> 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-

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


Re: [VOTE] Release Apache Commons CSV 1.9.0 based on RC1

Posted by Arturo Bernal <ar...@yahoo.com.INVALID>.

[x] +1 Release these artifacts

Building OK from tag, with `clean test install` targets.
Building OK from tag, with `site:site` targets


Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
Maven home: /opt/apache-maven-3.8.1
Java version: 16, vendor: Oracle Corporation, runtime: /Users/abernal/Library/Java/JavaVirtualMachines/openjdk-16/Contents/Home
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.16", arch: "x86_64", family: “Mac"

Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
Maven home: /opt/apache-maven-3.8.1
Java version: 11.0.5, vendor: Oracle Corporation, runtime: /Library/Java/JavaVirtualMachines/jdk-11.0.5.jdk/Contents/Home
Default locale: en_US, platform encoding: UTF-8
OS name: "mac os x", version: "10.16", arch: "x86_64", family: “mac"

Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
Maven home: /opt/apache-maven-3.8.1
Java version: 1.8.0_275, 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.16", arch: "x86_64", family: "mac"
[INFO] Scanning for projects...


Arturo Bernal
arturobernalg@yahoo.com



> On 29 Jul 2021, at 03:52, Bruno P. Kinoshita <ki...@apache.org> wrote:
> 
> [x] +1 Release these artifacts
> 
> Building OK on Maven 3.6.3 JDK 11 on Ubuntu.
> 
> Checked signatures, found no issues. Site reports look good too. Inspected a couple of files in the dist area, LICENSE/NOTICE/other files all good, no issues.
> 
> 
> Thanks and sorry for the delay reviewing the release.
> 
> 
> Bruno
> 
> 
>    On Thursday, 29 July 2021, 3:37:19 am NZST, Gary Gregory <ga...@gmail.com> wrote:  
> 
> May I please get PMC reviews?
> 
> Gary
> 
> On Tue, Jul 27, 2021 at 7:39 AM Gary Gregory <ga...@gmail.com> wrote:
>> 
>> Ping ;-)
>> 
>> Gary
>> 
>> On Sat, Jul 24, 2021, 11:56 Gary Gregory <ga...@gmail.com> wrote:
>>> 
>>> We have fixed a few bugs and added some enhancements since Apache
>>> Commons CSV 1.8 was released, so I would like to release Apache
>>> Commons CSV 1.9.0.
>>> 
>>> Apache Commons CSV 1.9.0 RC1 is available for review here:
>>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1 (svn
>>> revision 48979)
>>> 
>>> The Git tag commons-csv-1.9.0-RC1 commit for this RC is
>>> 8e25a2b30cae841101540c26ff21b79c51ad3eff which you can browse here:
>>>     https://gitbox.apache.org/repos/asf?p=commons-csv.git;a=commit;h=8e25a2b30cae841101540c26ff21b79c51ad3eff
>>> You may checkout this tag using:
>>>     git clone https://gitbox.apache.org/repos/asf/commons-csv.git
>>> --branch commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
>>> 
>>> Maven artifacts are here:
>>>     https://repository.apache.org/content/repositories/orgapachecommons-1558/org/apache/commons/commons-csv/1.9.0/
>>> 
>>> These are the artifacts and their hashes:
>>> 
>>> #Release SHA-512s
>>> #Sat Jul 24 11:41:46 EDT 2021
>>> commons-csv-1.9.0-bin.tar.gz=0b6ecb1c14c8745a10bfb2d1813446eee3dc1c44c72e14419ae0b15dd6e717f336c76a28f7664f083a70e71ad43346dc9cc555b2cd851899a089fad13f76be19
>>> commons-csv-1.9.0-bin.zip=69f12e5b65636ff3f6d5d119920c8570ce603b975869c5f89b7f1ce5f061a11d8dba28508e4b927ae8d2f0c7cda98934582a2f8befee9865323432df86cec2ab
>>> commons-csv-1.9.0-javadoc.jar=15fc0bf7325db35abcb4c586df0e92521322e57e30338aa653a62460281a7cb3dedfdb770d176451ce5fef4eaf965bcf91103bc8b3d8383c107382444672ac35
>>> commons-csv-1.9.0-sources.jar=5ff2ce4e1662cba7c38d7922f418fded2e1b9ffdb64cd78f0a86b89c0d3d366a1e248f554219a2103478c365785ed9f1a9b38d218a2da3ff535a82f23ca08a68
>>> commons-csv-1.9.0-src.tar.gz=4610197fbbf1b3fb3ff19ff8f5ee0ffe945c34c05e3db71b89156bf17aa7f6b2816ddace85457fec82cb22337f777e08eac5984d7299e702b537f0d242d368d8
>>> commons-csv-1.9.0-src.zip=2903e0d47a006d68bdcd33e8a2ea30b5858ac43176a72e804f917a3f4e170e03fc66949d895e124420aa9106794fbdee4787b088b130c23ac636f9aa376f793a
>>> commons-csv-1.9.0-test-sources.jar=7ac545c663f2b2ee824a18acbadfcbda19f85306ed71417cabe7c7acb9e221fdaada5c5f7946bfe5ebf4c046a2a516b1c51a4cf90244c609b1e478b933c0c62b
>>> commons-csv-1.9.0-tests.jar=b29eca481fb7e8e64eec1fe4621dc8c0da7ac51480316d82a42dc73a8f99bbf64811cb948c4cab64b523890a0e8438af4e85dc6c51f14c554a4d0e0752eb6b2a
>>> 
>>> I have tested this with 'mvn -V -Prelease -Ptest-deploy -P jacoco -P
>>> japicmp clean package site deploy' using:
>>> 
>>> Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
>>> Maven home: /usr/local/Cellar/maven/3.8.1/libexec
>>> Java version: 1.8.0_292, 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.16", arch: "x86_64", family: "mac"
>>> 
>>> Details of changes since 1.8 are in the release notes:
>>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/RELEASE-NOTES.txt
>>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/changes-report.html
>>> 
>>> Site:
>>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/index.html
>>>     (note some *relative* links are broken and the 1.9.0 directories
>>> are not yet created - these will be OK once the site is deployed.)
>>> 
>>> JApiCmp Report (compared to 1.8):
>>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/japicmp.html
>>> 
>>> RAT Report:
>>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/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-csv.git --branch
>>> commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
>>> cd commons-csv-1.9.0-RC1
>>> 
>>> 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-
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@commons.apache.org
> For additional commands, e-mail: dev-help@commons.apache.org
> 


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


Re: [VOTE] Release Apache Commons CSV 1.9.0 based on RC1

Posted by "Bruno P. Kinoshita" <ki...@apache.org>.
 [x] +1 Release these artifacts

Building OK on Maven 3.6.3 JDK 11 on Ubuntu.

Checked signatures, found no issues. Site reports look good too. Inspected a couple of files in the dist area, LICENSE/NOTICE/other files all good, no issues.


Thanks and sorry for the delay reviewing the release.


Bruno


    On Thursday, 29 July 2021, 3:37:19 am NZST, Gary Gregory <ga...@gmail.com> wrote:  
 
 May I please get PMC reviews?

Gary

On Tue, Jul 27, 2021 at 7:39 AM Gary Gregory <ga...@gmail.com> wrote:
>
> Ping ;-)
>
> Gary
>
> On Sat, Jul 24, 2021, 11:56 Gary Gregory <ga...@gmail.com> wrote:
>>
>> We have fixed a few bugs and added some enhancements since Apache
>> Commons CSV 1.8 was released, so I would like to release Apache
>> Commons CSV 1.9.0.
>>
>> Apache Commons CSV 1.9.0 RC1 is available for review here:
>>    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1 (svn
>> revision 48979)
>>
>> The Git tag commons-csv-1.9.0-RC1 commit for this RC is
>> 8e25a2b30cae841101540c26ff21b79c51ad3eff which you can browse here:
>>    https://gitbox.apache.org/repos/asf?p=commons-csv.git;a=commit;h=8e25a2b30cae841101540c26ff21b79c51ad3eff
>> You may checkout this tag using:
>>    git clone https://gitbox.apache.org/repos/asf/commons-csv.git
>> --branch commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
>>
>> Maven artifacts are here:
>>    https://repository.apache.org/content/repositories/orgapachecommons-1558/org/apache/commons/commons-csv/1.9.0/
>>
>> These are the artifacts and their hashes:
>>
>> #Release SHA-512s
>> #Sat Jul 24 11:41:46 EDT 2021
>> commons-csv-1.9.0-bin.tar.gz=0b6ecb1c14c8745a10bfb2d1813446eee3dc1c44c72e14419ae0b15dd6e717f336c76a28f7664f083a70e71ad43346dc9cc555b2cd851899a089fad13f76be19
>> commons-csv-1.9.0-bin.zip=69f12e5b65636ff3f6d5d119920c8570ce603b975869c5f89b7f1ce5f061a11d8dba28508e4b927ae8d2f0c7cda98934582a2f8befee9865323432df86cec2ab
>> commons-csv-1.9.0-javadoc.jar=15fc0bf7325db35abcb4c586df0e92521322e57e30338aa653a62460281a7cb3dedfdb770d176451ce5fef4eaf965bcf91103bc8b3d8383c107382444672ac35
>> commons-csv-1.9.0-sources.jar=5ff2ce4e1662cba7c38d7922f418fded2e1b9ffdb64cd78f0a86b89c0d3d366a1e248f554219a2103478c365785ed9f1a9b38d218a2da3ff535a82f23ca08a68
>> commons-csv-1.9.0-src.tar.gz=4610197fbbf1b3fb3ff19ff8f5ee0ffe945c34c05e3db71b89156bf17aa7f6b2816ddace85457fec82cb22337f777e08eac5984d7299e702b537f0d242d368d8
>> commons-csv-1.9.0-src.zip=2903e0d47a006d68bdcd33e8a2ea30b5858ac43176a72e804f917a3f4e170e03fc66949d895e124420aa9106794fbdee4787b088b130c23ac636f9aa376f793a
>> commons-csv-1.9.0-test-sources.jar=7ac545c663f2b2ee824a18acbadfcbda19f85306ed71417cabe7c7acb9e221fdaada5c5f7946bfe5ebf4c046a2a516b1c51a4cf90244c609b1e478b933c0c62b
>> commons-csv-1.9.0-tests.jar=b29eca481fb7e8e64eec1fe4621dc8c0da7ac51480316d82a42dc73a8f99bbf64811cb948c4cab64b523890a0e8438af4e85dc6c51f14c554a4d0e0752eb6b2a
>>
>> I have tested this with 'mvn -V -Prelease -Ptest-deploy -P jacoco -P
>> japicmp clean package site deploy' using:
>>
>> Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
>> Maven home: /usr/local/Cellar/maven/3.8.1/libexec
>> Java version: 1.8.0_292, 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.16", arch: "x86_64", family: "mac"
>>
>> Details of changes since 1.8 are in the release notes:
>>    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/RELEASE-NOTES.txt
>>    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/changes-report.html
>>
>> Site:
>>    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/index.html
>>    (note some *relative* links are broken and the 1.9.0 directories
>> are not yet created - these will be OK once the site is deployed.)
>>
>> JApiCmp Report (compared to 1.8):
>>    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/japicmp.html
>>
>> RAT Report:
>>    https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/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-csv.git --branch
>> commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
>> cd commons-csv-1.9.0-RC1
>>
>> 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-

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

  

Re: [VOTE] Release Apache Commons CSV 1.9.0 based on RC1

Posted by Gary Gregory <ga...@gmail.com>.
May I please get PMC reviews?

Gary

On Tue, Jul 27, 2021 at 7:39 AM Gary Gregory <ga...@gmail.com> wrote:
>
> Ping ;-)
>
> Gary
>
> On Sat, Jul 24, 2021, 11:56 Gary Gregory <ga...@gmail.com> wrote:
>>
>> We have fixed a few bugs and added some enhancements since Apache
>> Commons CSV 1.8 was released, so I would like to release Apache
>> Commons CSV 1.9.0.
>>
>> Apache Commons CSV 1.9.0 RC1 is available for review here:
>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1 (svn
>> revision 48979)
>>
>> The Git tag commons-csv-1.9.0-RC1 commit for this RC is
>> 8e25a2b30cae841101540c26ff21b79c51ad3eff which you can browse here:
>>     https://gitbox.apache.org/repos/asf?p=commons-csv.git;a=commit;h=8e25a2b30cae841101540c26ff21b79c51ad3eff
>> You may checkout this tag using:
>>     git clone https://gitbox.apache.org/repos/asf/commons-csv.git
>> --branch commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
>>
>> Maven artifacts are here:
>>     https://repository.apache.org/content/repositories/orgapachecommons-1558/org/apache/commons/commons-csv/1.9.0/
>>
>> These are the artifacts and their hashes:
>>
>> #Release SHA-512s
>> #Sat Jul 24 11:41:46 EDT 2021
>> commons-csv-1.9.0-bin.tar.gz=0b6ecb1c14c8745a10bfb2d1813446eee3dc1c44c72e14419ae0b15dd6e717f336c76a28f7664f083a70e71ad43346dc9cc555b2cd851899a089fad13f76be19
>> commons-csv-1.9.0-bin.zip=69f12e5b65636ff3f6d5d119920c8570ce603b975869c5f89b7f1ce5f061a11d8dba28508e4b927ae8d2f0c7cda98934582a2f8befee9865323432df86cec2ab
>> commons-csv-1.9.0-javadoc.jar=15fc0bf7325db35abcb4c586df0e92521322e57e30338aa653a62460281a7cb3dedfdb770d176451ce5fef4eaf965bcf91103bc8b3d8383c107382444672ac35
>> commons-csv-1.9.0-sources.jar=5ff2ce4e1662cba7c38d7922f418fded2e1b9ffdb64cd78f0a86b89c0d3d366a1e248f554219a2103478c365785ed9f1a9b38d218a2da3ff535a82f23ca08a68
>> commons-csv-1.9.0-src.tar.gz=4610197fbbf1b3fb3ff19ff8f5ee0ffe945c34c05e3db71b89156bf17aa7f6b2816ddace85457fec82cb22337f777e08eac5984d7299e702b537f0d242d368d8
>> commons-csv-1.9.0-src.zip=2903e0d47a006d68bdcd33e8a2ea30b5858ac43176a72e804f917a3f4e170e03fc66949d895e124420aa9106794fbdee4787b088b130c23ac636f9aa376f793a
>> commons-csv-1.9.0-test-sources.jar=7ac545c663f2b2ee824a18acbadfcbda19f85306ed71417cabe7c7acb9e221fdaada5c5f7946bfe5ebf4c046a2a516b1c51a4cf90244c609b1e478b933c0c62b
>> commons-csv-1.9.0-tests.jar=b29eca481fb7e8e64eec1fe4621dc8c0da7ac51480316d82a42dc73a8f99bbf64811cb948c4cab64b523890a0e8438af4e85dc6c51f14c554a4d0e0752eb6b2a
>>
>> I have tested this with 'mvn -V -Prelease -Ptest-deploy -P jacoco -P
>> japicmp clean package site deploy' using:
>>
>> Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
>> Maven home: /usr/local/Cellar/maven/3.8.1/libexec
>> Java version: 1.8.0_292, 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.16", arch: "x86_64", family: "mac"
>>
>> Details of changes since 1.8 are in the release notes:
>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/RELEASE-NOTES.txt
>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/changes-report.html
>>
>> Site:
>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/index.html
>>     (note some *relative* links are broken and the 1.9.0 directories
>> are not yet created - these will be OK once the site is deployed.)
>>
>> JApiCmp Report (compared to 1.8):
>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/japicmp.html
>>
>> RAT Report:
>>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/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-csv.git --branch
>> commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
>> cd commons-csv-1.9.0-RC1
>>
>> 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-

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


Re: [VOTE] Release Apache Commons CSV 1.9.0 based on RC1

Posted by Gary Gregory <ga...@gmail.com>.
Ping ;-)

Gary

On Sat, Jul 24, 2021, 11:56 Gary Gregory <ga...@gmail.com> wrote:

> We have fixed a few bugs and added some enhancements since Apache
> Commons CSV 1.8 was released, so I would like to release Apache
> Commons CSV 1.9.0.
>
> Apache Commons CSV 1.9.0 RC1 is available for review here:
>     https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1 (svn
> revision 48979)
>
> The Git tag commons-csv-1.9.0-RC1 commit for this RC is
> 8e25a2b30cae841101540c26ff21b79c51ad3eff which you can browse here:
>
> https://gitbox.apache.org/repos/asf?p=commons-csv.git;a=commit;h=8e25a2b30cae841101540c26ff21b79c51ad3eff
> You may checkout this tag using:
>     git clone https://gitbox.apache.org/repos/asf/commons-csv.git
> --branch <https://gitbox.apache.org/repos/asf/commons-csv.git--branch>
> commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
>
> Maven artifacts are here:
>
> https://repository.apache.org/content/repositories/orgapachecommons-1558/org/apache/commons/commons-csv/1.9.0/
>
> These are the artifacts and their hashes:
>
> #Release SHA-512s
> #Sat Jul 24 11:41:46 EDT 2021
>
> commons-csv-1.9.0-bin.tar.gz=0b6ecb1c14c8745a10bfb2d1813446eee3dc1c44c72e14419ae0b15dd6e717f336c76a28f7664f083a70e71ad43346dc9cc555b2cd851899a089fad13f76be19
>
> commons-csv-1.9.0-bin.zip=69f12e5b65636ff3f6d5d119920c8570ce603b975869c5f89b7f1ce5f061a11d8dba28508e4b927ae8d2f0c7cda98934582a2f8befee9865323432df86cec2ab
>
> commons-csv-1.9.0-javadoc.jar=15fc0bf7325db35abcb4c586df0e92521322e57e30338aa653a62460281a7cb3dedfdb770d176451ce5fef4eaf965bcf91103bc8b3d8383c107382444672ac35
>
> commons-csv-1.9.0-sources.jar=5ff2ce4e1662cba7c38d7922f418fded2e1b9ffdb64cd78f0a86b89c0d3d366a1e248f554219a2103478c365785ed9f1a9b38d218a2da3ff535a82f23ca08a68
>
> commons-csv-1.9.0-src.tar.gz=4610197fbbf1b3fb3ff19ff8f5ee0ffe945c34c05e3db71b89156bf17aa7f6b2816ddace85457fec82cb22337f777e08eac5984d7299e702b537f0d242d368d8
>
> commons-csv-1.9.0-src.zip=2903e0d47a006d68bdcd33e8a2ea30b5858ac43176a72e804f917a3f4e170e03fc66949d895e124420aa9106794fbdee4787b088b130c23ac636f9aa376f793a
>
> commons-csv-1.9.0-test-sources.jar=7ac545c663f2b2ee824a18acbadfcbda19f85306ed71417cabe7c7acb9e221fdaada5c5f7946bfe5ebf4c046a2a516b1c51a4cf90244c609b1e478b933c0c62b
>
> commons-csv-1.9.0-tests.jar=b29eca481fb7e8e64eec1fe4621dc8c0da7ac51480316d82a42dc73a8f99bbf64811cb948c4cab64b523890a0e8438af4e85dc6c51f14c554a4d0e0752eb6b2a
>
> I have tested this with 'mvn -V -Prelease -Ptest-deploy -P jacoco -P
> japicmp clean package site deploy' using:
>
> Apache Maven 3.8.1 (05c21c65bdfed0f71a2f2ada8b84da59348c4c5d)
> Maven home: /usr/local/Cellar/maven/3.8.1/libexec
> Java version: 1.8.0_292, 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.16", arch: "x86_64", family: "mac"
>
> Details of changes since 1.8 are in the release notes:
>
> https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/RELEASE-NOTES.txt
>
> https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/changes-report.html
>
> Site:
>
> https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/index.html
>     (note some *relative* links are broken and the 1.9.0 directories
> are not yet created - these will be OK once the site is deployed.)
>
> JApiCmp Report (compared to 1.8):
>
> https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/site/japicmp.html
>
> RAT Report:
>
> https://dist.apache.org/repos/dist/dev/commons/csv/1.9.0-RC1/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-csv.git --branch
> commons-csv-1.9.0-RC1 commons-csv-1.9.0-RC1
> cd commons-csv-1.9.0-RC1
>
> 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-
>