Also <statistics.build.outputTimestamp>2024-08-16T00:00:00Z</statistics.build.outputTimestamp>
seems wrong: should that not be updated for each release? On Fri, 12 Sept 2025 at 16:52, sebb <seb...@gmail.com> wrote: > > On Fri, 12 Sept 2025 at 16:29, Alex Herbert <alex.d.herb...@gmail.com> wrote: > > > > We have fixed quite a few bugs and added some significant enhancements > > since Apache Commons Statistics 1.1 was released, > > so I would like to release Apache Commons Statistics 1.2. > > > > Apache Commons Statistics 1.2 RC1 is available for review here: > > https://dist.apache.org/repos/dist/dev/commons/statistics/1.2-RC1 (svn > > revision 79284) > > > > The Git tag commons-statistics-1.2-RC1 commit for this RC is > > commons-statistics-1.2-RC1 which you can browse here: > > > > https://gitbox.apache.org/repos/asf?p=commons-statistics.git;a=commit;h=commons-statistics-1.2-RC1 > > You may checkout this tag using: > > git clone https://gitbox.apache.org/repos/asf/commons-statistics.git > > --branch commons-statistics-1.2-RC1 commons-statistics-1.2-RC1 > > > > Maven artifacts are here: > > > > https://repository.apache.org/content/repositories/orgapachecommons-1859/org/apache/commons/commons-statistics/1.2/ > > > > These are the artifacts and their hashes: > > > > #Release SHA-512s > > #Fri Sep 12 15:54:30 BST 2025 > > commons-statistics-1.2-bin.tar.gz=786d65f80a627e9bbf5431a827d947c8a986e74a68e9b7c899a164b12eeab8f237f3ba5920aba73146b36318ba19d0bdc8761f43597b0259b70f2f2ed513c91d > > commons-statistics-1.2-bin.zip=01d378efcb56e4d801b0238e895ecff338ae63137c4794f9cf26743003b759bd01f33dc6eac9b78c595eebd324834c85f86d9aab70509f9baad871c6f14c233f > > commons-statistics-1.2-src.tar.gz=bdca246a2ac1d95ccb211b221342a40aff5266a8ebf86525540fd862f78b286087ca1e86072f626f47f09c91d66a5c224e666f922b98093c6870cbf857bec3dc > > commons-statistics-1.2-src.zip=ac3c36701d2939dbece791e6b332119d9f4c7a1e9459c30a9eb45959be52c38a5f362f6b90fe4a6ab789d8fb0bb1a54232d0b61caf4dcb63e26e3f715fe08f41 > > > > I have tested this with 'mvn clean install' and 'mvn clean install site > > site:stage -Pexamples' using: > > > > Apache Maven 3.9.9 (8e8579a9e76f7d015ee5ec7bfcdc97d260186937) > > Maven home: /Users/ah403/software/apache-maven-3 > > Java version: 11.0.27, vendor: Homebrew, runtime: > > /opt/homebrew/Cellar/openjdk@11/11.0.27/libexec/openjdk.jdk/Contents/Home > > Default locale: en_GB, platform encoding: UTF-8 > > OS name: "mac os x", version: "15.6.1", arch: "aarch64", family: "mac" > > > > Details of changes since 1.1 are in the release notes: > > > > https://dist.apache.org/repos/dist/dev/commons/statistics/1.2-RC1/RELEASE-NOTES.txt > > > > https://dist.apache.org/repos/dist/dev/commons/statistics/1.2-RC1/site/changes.html > > > > Site: > > > > https://dist.apache.org/repos/dist/dev/commons/statistics/1.2-RC1/site/index.html > > (note some *relative* links are broken and the 1.2 directories are not > > yet created - these will be OK once the site is deployed.) > > The page footer is missing the required trademark references. > > > JApiCmp Report: > > > > https://dist.apache.org/repos/dist/dev/commons/statistics/1.2-RC1/site/commons-statistics-descriptive/japicmp.html > > > > https://dist.apache.org/repos/dist/dev/commons/statistics/1.2-RC1/site/commons-statistics-distribution/japicmp.html > > > > https://dist.apache.org/repos/dist/dev/commons/statistics/1.2-RC1/site/commons-statistics-inference/japicmp.html > > > > https://dist.apache.org/repos/dist/dev/commons/statistics/1.2-RC1/site/commons-statistics-ranking/japicmp.html > > > > RAT Report: > > > > https://dist.apache.org/repos/dist/dev/commons/statistics/1.2-RC1/site/rat-report.html > > > > KEYS: > > https://downloads.apache.org/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, > > > > Alex Herbert, > > Release Manager (using key BC87A3FD0A54480F0BADBEBD21939FF0CA2A6567) > > > > The following is intended as a helper and refresher for reviewers. > > > > Validating a release candidate > > ============================== > > > > These guidelines are NOT complete. > > > > Requirements: Git, Java, and Maven. > > > > You can validate a release from a release candidate (RC) tag as follows. > > > > 1a) Download and decompress the source archive from: > > > > https://dist.apache.org/repos/dist/dev/commons/statistics/1.2-RC1/source > > > > 1b) Check out the RC tag from git (optional) > > > > This is optional, as a reviewer must check source distributions as a > > minimum. > > > > git clone https://gitbox.apache.org/repos/asf/commons-statistics.git > > --branch commons-statistics-1.2-RC1 commons-statistics-1.2-RC1 > > cd commons-statistics-1.2-RC1 > > > > 2) Checking the build > > > > All components should include a default Maven goal, such that you can run > > 'mvn' from the command line by itself. > > > > 2) Check Apache licenses > > > > This step is not required if the site includes a RAT report page which you > > then must check. > > This check should be included in the default Maven build, but you can check > > it with: > > > > mvn apache-rat:check > > > > 3) Check binary compatibility > > > > This step is not required if the site includes a JApiCmp report page which > > you then must check. > > This check should be included in the default Maven build, but you can check > > it with: > > > > mvn verify -DskipTests -P japicmp japicmp:cmp > > > > 4) Build the package > > > > This check should be included in the default Maven build, but you can check > > it with: > > > > 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 > > > > 4b) Check reproducibility > > > > To check that a build is reproducible, run: > > > > mvn clean verify artifact:compare -DskipTests -Dreference.repo= > > https://repository.apache.org/content/repositories/staging/ > > '-Dbuildinfo.ignore=*/*.spdx.json' > > > > Note that this excludes SPDX files from the check. > > > > 5) 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 > > > > Note that the project reports are created for each module. > > Modules can be accessed using the 'Project Modules' link under > > the 'Project Information' menu (see <path-to-site>/modules.html). > > > > -the end- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org