You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2022/11/01 11:55:46 UTC

[commons-numbers] branch master updated (56188311 -> dce586e2)

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git


    from 56188311 Use latest MathJax v3 script tag
     new c4b9ef49 Update following release 1.1
     new 16d9634f Update README pages for v1.1
     new 62c32c5a Update commons version properties for latest release (v1.1)
     new 8b37850b Update release notes
     new dce586e2 Fix broken search in javadoc pages

The 5 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md                                          |   6 +-
 RELEASE-NOTES.txt                                  |  71 +++++++
 commons-numbers-angle/README.md                    |   4 +-
 commons-numbers-angle/pom.xml                      |   2 +-
 commons-numbers-angle/src/site/site.xml            |   2 +
 commons-numbers-arrays/README.md                   |   4 +-
 commons-numbers-arrays/pom.xml                     |   2 +-
 commons-numbers-arrays/src/site/site.xml           |   2 +
 commons-numbers-bom/pom.xml                        |   4 +-
 commons-numbers-combinatorics/README.md            |   4 +-
 commons-numbers-combinatorics/pom.xml              |   2 +-
 commons-numbers-combinatorics/src/site/site.xml    |   2 +
 commons-numbers-complex-streams/README.md          |   4 +-
 commons-numbers-complex-streams/pom.xml            |   2 +-
 commons-numbers-complex/README.md                  |   4 +-
 commons-numbers-complex/pom.xml                    |   2 +-
 commons-numbers-complex/src/site/site.xml          |   2 +
 commons-numbers-core/README.md                     |   4 +-
 commons-numbers-core/pom.xml                       |   2 +-
 commons-numbers-core/src/site/site.xml             |   2 +
 commons-numbers-docs/pom.xml                       |  26 +--
 commons-numbers-examples/examples-jmh/pom.xml      |   2 +-
 commons-numbers-examples/pom.xml                   |   2 +-
 commons-numbers-field/README.md                    |   4 +-
 commons-numbers-field/pom.xml                      |   2 +-
 commons-numbers-field/src/site/site.xml            |   2 +
 commons-numbers-fraction/README.md                 |   4 +-
 commons-numbers-fraction/pom.xml                   |   2 +-
 commons-numbers-fraction/src/site/site.xml         |   2 +
 commons-numbers-gamma/README.md                    |   4 +-
 commons-numbers-gamma/pom.xml                      |   2 +-
 commons-numbers-gamma/src/site/site.xml            |   2 +
 commons-numbers-primes/README.md                   |   4 +-
 commons-numbers-primes/pom.xml                     |   2 +-
 commons-numbers-primes/src/site/site.xml           |   2 +
 commons-numbers-quaternion/README.md               |   4 +-
 commons-numbers-quaternion/pom.xml                 |   2 +-
 commons-numbers-quaternion/src/site/site.xml       |   2 +
 commons-numbers-rootfinder/README.md               |   4 +-
 commons-numbers-rootfinder/pom.xml                 |   2 +-
 commons-numbers-rootfinder/src/site/site.xml       |   2 +
 dist-archive/pom.xml                               |  10 +-
 doc/release/release.howto.txt                      | 235 +++++++++++----------
 pom.xml                                            |  28 ++-
 src/changes/changes.xml                            |  23 +-
 ...RELEASE-NOTES-1.0.txt => RELEASE-NOTES-1.1.txt} |  71 +++++++
 src/site/xdoc/download_numbers.xml                 |  26 +--
 src/site/xdoc/release-history.xml                  |   3 +
 48 files changed, 401 insertions(+), 200 deletions(-)
 copy src/site/resources/release-notes/{RELEASE-NOTES-1.0.txt => RELEASE-NOTES-1.1.txt} (54%)


[commons-numbers] 05/05: Fix broken search in javadoc pages

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit dce586e2593e79a32384126816341eba368ac248
Author: aherbert <ah...@apache.org>
AuthorDate: Tue Nov 1 11:39:05 2022 +0000

    Fix broken search in javadoc pages
---
 pom.xml | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/pom.xml b/pom.xml
index 9861d348..5be77b24 100644
--- a/pom.xml
+++ b/pom.xml
@@ -330,6 +330,17 @@
           <failOnWarnings>true</failOnWarnings>
           <!-- Enable MathJax -->
           <additionalOptions>${doclint.javadoc.qualifier} ${allowscript.javadoc.qualifier} -header '&lt;script src="https://polyfill.io/v3/polyfill.min.js?features=es6"&gt;&lt;/script&gt;&lt;script type="text/javascript" async src="${numbers.mathjax.url}"&gt;&lt;/script&gt;'</additionalOptions>
+          <!-- Fix for javadoc search:
+               https://stackoverflow.com/questions/52326318/maven-javadoc-search-redirects-to-undefined-url -->
+          <bottom>
+          <![CDATA[
+              <script>
+              if (typeof useModuleDirectories !== 'undefined') {
+                  useModuleDirectories = false;
+              }
+              </script>
+          ]]>
+          </bottom>
         </configuration>
       </plugin>
       <plugin>
@@ -442,6 +453,17 @@
           <failOnWarnings>true</failOnWarnings>
           <!-- Enable MathJax -->
           <additionalOptions>${doclint.javadoc.qualifier} ${allowscript.javadoc.qualifier} -header '&lt;script src="https://polyfill.io/v3/polyfill.min.js?features=es6"&gt;&lt;/script&gt;&lt;script type="text/javascript" async src="${numbers.mathjax.url}"&gt;&lt;/script&gt;'</additionalOptions>
+          <!-- Fix for javadoc search:
+               https://stackoverflow.com/questions/52326318/maven-javadoc-search-redirects-to-undefined-url -->
+          <bottom>
+          <![CDATA[
+              <script>
+              if (typeof useModuleDirectories !== 'undefined') {
+                  useModuleDirectories = false;
+              }
+              </script>
+          ]]>
+          </bottom>
         </configuration>
       </plugin>
     </plugins>


[commons-numbers] 04/05: Update release notes

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit 8b37850b435c698c4c186eeb1adfb9fd754ea112
Author: aherbert <ah...@apache.org>
AuthorDate: Tue Nov 1 11:05:55 2022 +0000

    Update release notes
---
 doc/release/release.howto.txt | 235 ++++++++++++++++++++++--------------------
 1 file changed, 122 insertions(+), 113 deletions(-)

diff --git a/doc/release/release.howto.txt b/doc/release/release.howto.txt
index 4c43f726..aa4f6dce 100644
--- a/doc/release/release.howto.txt
+++ b/doc/release/release.howto.txt
@@ -75,11 +75,11 @@ NOTE
 When performing a release it is good practice to edit a copy of these notes during the process
 and merge the updated document into the repository following a release. To assist in this process
 a find-and-replace can be performed to update all the version numbers in order. For example
-based on a previous release of 1.0:
+based on a previous release of 1.1:
 
-- Next development version  : 1.1 -> 1.2
-- Next release version      : 1.0 -> 1.1
-- Previous release version  : 1.0-beta1 -> 1.0
+- Next development version  : 1.2 -> 1.3
+- Next release version      : 1.1 -> 1.2
+- Previous release version  : 1.0 -> 1.1
 - Release candidate version : RC1 -> RC2   (if applicable)
 
 This allows the included commands to be coped during the release process.
@@ -107,7 +107,8 @@ Preliminary checks:
  * Make sure that the construct reported by "SpotBugs" and "PMD" are intentional.
  * Mark all issues fixed in the release as resolved in the bug-tracking system (JIRA). Issues marked
    as 'Implemented' or 'Fixed' will appear in the changes report. Add a corresponding entry in
-   "src/changes/changes.xml" for the JIRA ticket.
+   "src/changes/changes.xml" for the JIRA ticket. To search for unresolved tickets
+   click 'Releases' on the left menu and select the upcoming release version.
 
 
 (1)
@@ -117,7 +118,7 @@ that the build process can create all the necessary artifacts.
   (1a)
   The command
 
-    $ JAVA_HOME="__Path_to_a_JDK__" mvn -Duser.name="__Your_Apache_id__" -Ptest-deploy -Prelease clean verify site site:stage deploy [-Dgpg.skip]
+    $ JAVA_HOME="__Path_to_a_JDK__" mvn -Duser.name="__Your_Apache_id__" -Ptest-deploy -Prelease clean deploy site site:stage [-Dgpg.skip]
 
   should create the artifacts in the "target/deploy" directory. The site goal
   is required for the commons release plugin even though the site is
@@ -168,8 +169,8 @@ candidate, create it locally starting from the master branch or the version
 branch and push it to Apache repository (assuming it is called origin),
 remembering the binding between the local and remote origin branches:
 
-  $ git branch 1.0-release
-  $ git push -u origin 1.0-release
+  $ git branch 1.1-release
+  $ git push -u origin 1.1-release
 
 (Optional)
 Modify the dist-archive/pom.xml to update the release manager name and GPG signing key
@@ -179,7 +180,7 @@ to be used for the release.
 (3)
 Switch to the release branch:
 
-  $ git checkout 1.0-release
+  $ git checkout 1.1-release
 
 
 (4)
@@ -187,18 +188,18 @@ If there have been changes committed in the master branch or the version
 branch since the creation of the release branch, there are two cases:
 
   (4a)
-  if all these changes must be included in version 1.0, merge "master"
-  or the version branch into "1.0-release":
+  if all these changes must be included in version 1.1, merge "master"
+  or the version branch into "1.1-release":
 
     $ git merge master
 
-  or, if the version branch is called "1.0-develop"
+  or, if the version branch is called "1.1-develop"
 
-    $ git merge 1.0-develop
+    $ git merge 1.1-develop
 
   (4b)
-  if only part of these changes must be included in version 1.0,
-  cherry-pick the required commits into the "1.0-release" branch:
+  if only part of these changes must be included in version 1.1,
+  cherry-pick the required commits into the "1.1-release" branch:
 
     $ git cherry-pick commit-SHA
 
@@ -213,16 +214,16 @@ In particular:
  * Estimate a release date (taking into account the release vote delay) and
    insert it in the "src/changes/changes.xml" file.
  * Update the "pom.xml" to contain the final version number and not a SNAPSHOT:
-   Assuming that the release version will be "1.0", modify the "<version>" tag to
+   Assuming that the release version will be "1.1", modify the "<version>" tag to
    read:
 
-    <version>1.0</version>
+    <version>1.1</version>
 
    This can be done using maven:
 
-    $ mvn versions:set -DnewVersion=1.0 -DgenerateBackupPoms=false -Pcommons-numbers-examples
+    $ mvn versions:set -DnewVersion=1.1 -DgenerateBackupPoms=false -Pcommons-numbers-examples
 
-   You will need to update the version in dist-archive/pom.xml manually.
+   You may need to update the version in dist-archive/pom.xml manually.
 
    Modify the section of "<properties>" that also refers to version numbers.
    You should uncomment the "<commons.rc.version>" line and indicate the
@@ -232,7 +233,7 @@ In particular:
 
   <properties>
     <!-- ... -->
-    <commons.release.version>1.0</commons.release.version>
+    <commons.release.version>1.1</commons.release.version>
     <commons.rc.version>RC1</commons.rc.version>
     <!-- ... -->
   </properties>
@@ -246,7 +247,7 @@ In particular:
 The "download" page template is located at "src/site/xdoc/download_numbers.xml".
 This file is updated automatically by running the command:
 
-  $ mvn -N -Pcommons-numbers-examples commons-build:download-page
+  $ mvn -N commons-build:download-page
 
   Note: This command presently requires Java 8.
 
@@ -256,7 +257,7 @@ collected during development in the file "src/changes/changes.xml".
 
 Create it by running:
 
-  $ mvn -Prelease-notes -Pcommons-numbers-examples changes:announcement-generate
+  $ mvn -N -Prelease-notes changes:announcement-generate
 
 Ensure the formatting of the RELEASE-NOTES.txt is consistent. Compare the main
 header description to the previous release notes in src/site/resources/release-notes/
@@ -269,11 +270,11 @@ issue field. Update changes.xml if appropriate.
 Append the previous release notes from src/site/resources/release-notes/ to the current one:
 
   $ (echo "=============================================================================" &&
-     cat src/site/resources/release-notes/RELEASE-NOTES-1.0-beta1.txt) >> RELEASE-NOTES.txt
+     cat src/site/resources/release-notes/RELEASE-NOTES-1.0.txt) >> RELEASE-NOTES.txt
 
 Copy the RELEASE-NOTES.txt to src/site/resources/release-notes:
 
-  $ cp RELEASE-NOTES.txt src/site/resources/release-notes/RELEASE-NOTES-1.0.txt
+  $ cp RELEASE-NOTES.txt src/site/resources/release-notes/RELEASE-NOTES-1.1.txt
 
 Update the src/site/xdoc/release-history.xml to include the latest version. This generates
 the release history page on the web site.
@@ -308,7 +309,7 @@ Then, assuming the first candidate, the suffix will be "RC1" (this should
 be the same as in the "<properties>" in the "pom.xml"), and the command
 will be:
 
-  $ git tag -u "__Your_key_id__" -s -m "RC1" commons-numbers-1.0-RC1
+  $ git tag -u "__Your_key_id__" -s -m "RC1" commons-numbers-1.1-RC1
 
 If you have several GPG keys, you may prefer to use "-u keyId" to select a specific
 key for signing the tag instead of "-s" which select automatically one key
@@ -316,13 +317,13 @@ from the configured e-mail address.
 
 Check the tag GPG signature:
 
-  $ git tag -v commons-numbers-1.0-RC1
+  $ git tag -v commons-numbers-1.1-RC1
 
 You will get something like:
 
   object cf4a9d70c9ac24dd7196995390171150e4e56451
   type commit
-  tag commons-numbers-1.0-RC1
+  tag commons-numbers-1.1-RC1
   tagger YourName <YourApacheEmail> 1418934614 +0100
 
   RC1
@@ -334,7 +335,7 @@ as it is the most stable reference for traceability.
 
 Push everything (including the tag!) on the Apache repository:
 
-  $ git push && git push --tags
+  $ git push && git push origin commons-numbers-1.1-RC1
 
 
 (9)
@@ -342,7 +343,7 @@ Switch to a new directory out of your regular workspace, and retrieve
 the official tag from the Apache repository:
 
   $ cd /tmp
-  $ git clone https://gitbox.apache.org/repos/asf/commons-numbers.git --branch commons-numbers-1.0-RC1
+  $ git clone https://gitbox.apache.org/repos/asf/commons-numbers.git --branch commons-numbers-1.1-RC1
 
 In the command above, the --branch option accepts both branch names and tags names,
 so we specify directly the tag here. Git will warn that the resulting workspace
@@ -389,7 +390,7 @@ You can then generate the release artifacts without the site generation (using J
 
   $ mvn -Duser.name="__Your_Apache_id__" [-Dcommons.distServer=apache.releases.https] \
         [-Duser.password=<yourApacheIdsPassword] \
-        -Prelease clean package site deploy
+        -Prelease clean deploy site
 
 which will transfer the artifacts to the Nexus repository located at
   https://repository.apache.org/index.html#stagingRepositories
@@ -412,13 +413,13 @@ from new and old JDKs.
 
 This process transfers more files than really needed in the the "staging" (i.e.
 non official) maven repository. The files expected in the repository are
-  commons-numbers-<ModuleArtifactID>-1.0.pom
-  commons-numbers-<ModuleArtifactID>-1.0.jar
-  commons-numbers-<ModuleArtifactID>-1.0.javadoc.jar
-  commons-numbers-<ModuleArtifactID>-1.0.sources.jar
-  commons-numbers-<ModuleArtifactID>-1.0.test-sources.jar
-  commons-numbers-<ModuleArtifactID>-1.0.tests.jar
-  commons-numbers-<ModuleArtifactID>-1.5.spdx.rdf.xml
+  commons-numbers-<ModuleArtifactID>-1.1.pom
+  commons-numbers-<ModuleArtifactID>-1.1.jar
+  commons-numbers-<ModuleArtifactID>-1.1.javadoc.jar
+  commons-numbers-<ModuleArtifactID>-1.1.sources.jar
+  commons-numbers-<ModuleArtifactID>-1.1.test-sources.jar
+  commons-numbers-<ModuleArtifactID>-1.1.tests.jar
+  commons-numbers-<ModuleArtifactID>-1.1.spdx.rdf.xml
 and their associated fingerprints
   <file-name>.md5
   <file-name>.sha1
@@ -435,8 +436,8 @@ present, they must be manually removed from Nexus staging area.
 
 ***
 Note: The commons-numbers-bom artifact is deployed using the sign-and-deploy goal
-of the maven gpg plugin. This still adds md5 and sha1 files for the artifact asc
-files and these should be deleted.
+of the maven gpg plugin. This still adds md5 and sha1 files for the artifact and
+site asc files and these should be deleted.
 
 Select each .asc.md5 and .asc.sha1 file and delete the artifact. Then refresh
 the view and confirm the deletion.
@@ -444,10 +445,10 @@ the view and confirm the deletion.
 
 The process used to transfer the complete source and binaries distributions files,
 (for each module):
-  commons-numbers-<ModuleArtifactId>-1.0-bin.tar.gz
-  commons-numbers-<ModuleArtifactId>-1.0-bin.zip
-  commons-numbers-<ModuleArtifactId>-1.0-src.tar.gz
-  commons-numbers-<ModuleArtifactId>-1.0-src.zip
+  commons-numbers-<ModuleArtifactId>-1.1-bin.tar.gz
+  commons-numbers-<ModuleArtifactId>-1.1-bin.zip
+  commons-numbers-<ModuleArtifactId>-1.1-src.tar.gz
+  commons-numbers-<ModuleArtifactId>-1.1-src.zip
 as well as their associated .md5 and .sha1 fingerprints and .asc signatures.
 All these files are not maven artifacts but rather distribution archives: They
 belong elsewhere; hence they must also been removed from the Nexus staging
@@ -469,15 +470,15 @@ referred to in this section.]
 ***
 Verify that the release plugin has performed the steps below.
 You may be required to remove the staged site from the "dev" area
-and add missing files. The following was performed for release 1.0:
+and add missing files. The following was performed for release 1.1:
 
   $ cd /tmp
   $ svn checkout https://dist.apache.org/repos/dist/dev/commons/numbers
-  $ cd numbers/1.5-RC1
+  $ cd numbers/1.1-RC1
   $ cp path-to-the-RC-workspace/CONTRIBUTING.md .
   $ svn add CONTRIBUTING.md
   $ svn del site
-  $ svn commit -m "Distribution files for Commons Numbers v1.0 (RC1)."
+  $ svn commit -m "Distribution files for Commons Numbers v1.1 (RC1)."
 ***
 
 Create and upload the other distribution files to the Apache servers.
@@ -510,7 +511,7 @@ Create and upload the other distribution files to the Apache servers.
 
     $ cp path-to-the-RC-workspace/RELEASE-NOTES.txt .
     $ cp path-to-the-RC-workspace/CONTRIBUTING.md .
-    $ cp path-to-the-RC-workspace/dist-archive/target/commons-release-plugin/scm/1.5-RC1/README.html .
+    $ cp path-to-the-RC-workspace/dist-archive/target/commons-release-plugin/scm/1.1-RC1/README.html .
     $ cp path-to-the-RC-workspace/dist-archive/target/*-bin.* binaries
     $ cp path-to-the-RC-workspace/dist-archive/target/*-src.* source
 
@@ -536,7 +537,7 @@ Create and upload the other distribution files to the Apache servers.
       RELEASE-NOTES.txt \
       binaries/* \
       source/*
-    $ svn commit -m "Distribution files for Commons Numbers v1.0 (RC1)."
+    $ svn commit -m "Distribution files for Commons Numbers v1.1 (RC1)."
 
 
 (13)
@@ -570,11 +571,11 @@ Then run these commands:
   $ mvn -Pcommons-numbers-examples package site site:stage
 
   $ cd target
-  $ mv staging commons-numbers-1.0-RC1-site
+  $ mv staging commons-numbers-1.1-RC1-site
   $ lftp sftp://__Your_apache_login__@home.apache.org
      lftp you@home.apache.org:~> mkdir public_html
      lftp you@home.apache.org:~> cd public_html
-     lftp you@home.apache.org:~/public_html> mirror -R commons-numbers-1.0-RC1-site
+     lftp you@home.apache.org:~/public_html> mirror -R commons-numbers-1.1-RC1-site
      lftp you@home.apache.org:~/public_html> bye
 
 If lftp fails with 'Fatal error: Host key verification failed.' then the host
@@ -590,68 +591,76 @@ a result that must be heavily edited.]
 Template the vote using this command (run from the dist-archive module):
 
   $ mvn org.apache.commons:commons-release-plugin:vote-txt \
-        -Dgit.tag.commit=commons-numbers-1.0-RC1 \
+        -Dgit.tag.commit=commons-numbers-1.1-RC1 \
         -Dcommons.nexus.repo.id=XXXX
 
 where XXXX is the nexus repository staging ID. The output is target/VOTE.txt.
 This must be heavily edited. It is useful to generate the release hashes.
 
 Call to vote by sending a message to the "dev" ML with subject
-"[VOTE] Release Commons Numbers 1.0 based on RC1". You can use the following example as
+"[VOTE] Release Commons Numbers 1.1 based on RC1". You can use the following example as
 a reference point, replacing the URLs with the appropriate ones:
 ----------
-We have fixed quite a few bugs and added some significant enhancements since Apache Commons Numbers 1.0-beta1 was released,
-so I would like to release Apache Commons Numbers 1.0.
+We have fixed quite a few bugs and added some significant enhancements since Apache Commons Numbers 1.0 was released,
+so I would like to release Apache Commons Numbers 1.1.
 
-Apache Commons Numbers (full distribution) 1.0 RC1 is available for review here:
-    https://dist.apache.org/repos/dist/dev/commons/numbers/1.0-RC1 (svn revision 48777)
+Apache Commons Numbers 1.1 RC1 is available for review here:
+    https://dist.apache.org/repos/dist/dev/commons/numbers/1.1-RC1 (svn revision 48777)
 
-The Git tag commit for this RC is commons-numbers-1.5-RC1 which you can browse here:
-    https://gitbox.apache.org/repos/asf?p=commons-numbers.git;a=commit;h=commons-numbers-1.5-RC1
+The Git tag commit for this RC is commons-numbers-1.1-RC1 which you can browse here:
+    https://gitbox.apache.org/repos/asf?p=commons-numbers.git;a=commit;h=commons-numbers-1.1-RC1
 
 You may checkout this tag using:
-    git clone https://gitbox.apache.org/repos/asf/commons-numbers.git --branch commons-numbers-1.0-RC1 commons-numbers-1.0-RC1
+    git clone https://gitbox.apache.org/repos/asf/commons-numbers.git --branch commons-numbers-1.1-RC1 commons-numbers-1.1-RC1
 
 Maven artifacts are here:
-    https://repository.apache.org/content/repositories/orgapachecommons-1556/
+    https://repository.apache.org/content/repositories/orgapachecommons-XXXX/org/apache/commons/
 
 These are the artifacts and their hashes:
 
-commons-numbers-1.0-bin.tar.gz=5e61ee22980a7534fb87793bb16eac371d7aea703552f2c8f14f049ae9646f97db8ae7e0e021c6ef4b4f1c78b529e33995fd4893030280437baf3081d429957a
-commons-numbers-1.0-bin.zip=4805949e5fab3c016d35be692b79a587b60e35a5809cc5be0817bce224a9462a5891400085040803183c54f2ff71ebdb385bf5119c5148b801333168aec14444
-commons-numbers-1.0-src.tar.gz=08656e681624e2bf2434714f6060e6b02de673089cc3711a01dfc3f0640791feb689206f68dc323a7bd14cb7760770567edc36bcdbea38b7eb31407521de6316
-commons-numbers-1.0-src.zip=5e80cfe64207c5ce990e2bee3e6a7ab7d22260f9e8f28b936197276c02bcba0e771b23f3f06bdcb4984adee69b748c4ebd3cddea40530b9cf8def64b6d4c91f7
+commons-numbers-1.1-bin.tar.gz=5e61ee22980a7534fb87793bb16eac371d7aea703552f2c8f14f049ae9646f97db8ae7e0e021c6ef4b4f1c78b529e33995fd4893030280437baf3081d429957a
+commons-numbers-1.1-bin.zip=4805949e5fab3c016d35be692b79a587b60e35a5809cc5be0817bce224a9462a5891400085040803183c54f2ff71ebdb385bf5119c5148b801333168aec14444
+commons-numbers-1.1-src.tar.gz=08656e681624e2bf2434714f6060e6b02de673089cc3711a01dfc3f0640791feb689206f68dc323a7bd14cb7760770567edc36bcdbea38b7eb31407521de6316
+commons-numbers-1.1-src.zip=5e80cfe64207c5ce990e2bee3e6a7ab7d22260f9e8f28b936197276c02bcba0e771b23f3f06bdcb4984adee69b748c4ebd3cddea40530b9cf8def64b6d4c91f7
 
 (no need for .asc hashes!)
 
-I have tested this with 'mvn clean install site' using:
+I have tested this with 'mvn clean install' using:
 
 ***
 <mvn -version>
 ***
 
-Details of changes since 1.0-beta1 are in the release notes:
-    https://dist.apache.org/repos/dist/dev/commons/numbers/1.0-RC1/RELEASE-NOTES.txt
+I have tested this with 'mvn clean install site site:stage -Pcommons-numbers-examples' using:
+
+***
+<mvn -version>
+***
+
+Note: The examples require Java 9+.
+
+Details of changes since 1.0 are in the release notes:
+    https://dist.apache.org/repos/dist/dev/commons/numbers/1.1-RC1/RELEASE-NOTES.txt
 
 Site:
-    https://home.apache.org/~mattjuntunen/commons-numbers-1.0-RC1-site/
-    (note some *relative* links are broken and the 1.0 directories are not yet created - these will be OK once the site is deployed.)
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/
+    (note some *relative* links are broken and the 1.1 directories are not yet created - these will be OK once the site is deployed.)
 
 JApiCmp Report:
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-angle/japicmp.html
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-arrays/japicmp.html
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-combinatorics/japicmp.html
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-complex/japicmp.html
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-core/japicmp.html
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-field/japicmp.html
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-fraction/japicmp.html
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-gamma/japicmp.html
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-primes/japicmp.html
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-quaternion/japicmp.html
-    https://home.apache.org/~aherbert/commons-numbers-1.5-RC1-site/commons-numbers-rootfinder/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-angle/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-arrays/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-combinatorics/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-complex/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-core/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-field/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-fraction/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-gamma/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-primes/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-quaternion/japicmp.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/commons-numbers-rootfinder/japicmp.html
 
 RAT Report:
-    https://home.apache.org/~mattjuntunen/commons-numbers-1.0-RC1-site/rat-report.html
+    https://home.apache.org/~aherbert/commons-numbers-1.1-RC1-site/rat-report.html
 
 KEYS:
   https://www.apache.org/dist/commons/KEYS
@@ -666,8 +675,8 @@ This vote will close no sooner that 72 hours from now.
 
 Thank you,
 
-Matt Juntunen,
-Release Manager (using key 7DD53AEFEDF1C3D392B51EBE346F4FCECFB70B1A)
+Alex Herbert,
+Release Manager (using key BC87A3FD0A54480F0BADBEBD21939FF0CA2A6567)
 ----------
 
 
@@ -702,8 +711,8 @@ area of the Apache dist server.
   Copy the files from the checkout of the repository that was voted on:
 
     $ svn co https://dist.apache.org/repos/dist/dev/commons/numbers numbers2
-    $ cd numbers2
-    $ rsync -Cav ../numbers/1.5-RC1/ .
+    $ cd numbers
+    $ rsync -Cav ../numbers2/1.1-RC1/ .
 
   [Note: This might overwrite symbolic links; in this case, do a "svn
   revert" in order to restore the files that should not be updated.]
@@ -719,13 +728,13 @@ area of the Apache dist server.
   Perform a "svn add" for the new release artifacts.
   Perform a "svn del" for the old release(s) artifacts.
 
-    $ svn del binaries/*-1.0-beta1-* source/*-1.0-beta1-*
-    $ svn add binaries/*-1.0-* source/*-1.0-*
+    $ svn del binaries/*-1.0-* source/*-1.0-*
+    $ svn add binaries/*-1.1-* source/*-1.1-*
 
   (17d)
   Commit:
 
-    $ svn commit -m "Release Commons Numbers v1.0 (from RC1)."
+    $ svn commit -m "Release Commons Numbers v1.1 (from RC1)."
 
   (17e)
   Register the release at
@@ -763,7 +772,7 @@ Remove all files there (except .svn folder) and move all the files from the site
 
  $ cd site-content
  $ rm -rf *
- $ cp -pR ../target/commons-numbers-1.0-RC1-site/* .
+ $ cp -pR ../target/commons-numbers-1.1-RC1-site/* .
 
 Check for new or deleted files:
  $ svn status
@@ -786,7 +795,7 @@ The following commands are useful.
 
 Note that the "awk '{if ... print $2}'" only works for files that have no
 spaces. Currently the only files known to have spaces are the SPDX files,
-e.g. 'Apache Commons Numbers-1.5.spdx.rdf.xml'; these must be committed manually.
+e.g. 'Apache Commons Numbers-1.1.spdx.rdf.xml'; these must be committed manually.
 
 Reverting (may not be required):
 
@@ -808,7 +817,7 @@ Check the local website:
   $ open index.html
 
 Commit the new contents of the web site:
-  $ svn commit -m "Commons Numbers v1.0 was released (from RC1). Web site update"
+  $ svn commit -m "Commons Numbers v1.1 was released (from RC1). Web site update"
 
 Note the SVN website revision for the next step (javadocs archiving).
 
@@ -816,11 +825,11 @@ Note the SVN website revision for the next step (javadocs archiving).
 Edit the file component_releases.properties to hold the current version and release date for
 your component:
 
-  $ svn checkout --depth files https://svn.apache.org/repos/asf/commons/cms-site/trunk/conf/component_releases.properties
+  $ svn checkout --depth files https://svn.apache.org/repos/asf/commons/cms-site/trunk/conf/
 
-  [edit file]
+  [edit file: component_releases.properties]
 
-  $ (cd conf && svn commit -m "Commons Numbers v1.0 was released (from RC1)")
+  $ (cd conf && svn commit -m "Commons Numbers v1.1 was released (from RC1)")
 
 
 (20)
@@ -833,7 +842,7 @@ The Javadoc must therefore be copied manually using server side copy from the
 to work. This is done using the "doc/release/copyLongTermJavadoc.sh" script
 (options are the svn revision and the component's new version).
 
-  $ doc/release/copyLongTermJavadoc.sh -r 1080991 -v 1.0
+  $ doc/release/copyLongTermJavadoc.sh -r 1080991 -v 1.1
 
 Wait a few minutes for the live site to fully sync and then check
   https://commons.apache.org/proper/commons-numbers/
@@ -850,13 +859,13 @@ in the SVN repository.
 
   [edit file: doap/doap_numbers.rdf]
 
-  $ (cd doap && svn commit -m "Commons Numbers v1.0 was released (from RC1)")
+  $ (cd doap && svn commit -m "Commons Numbers v1.1 was released (from RC1)")
 
 (22)
 In the git repository, put the official final tag to point at the same commit
 as the **last release candidate** tag:
 
-  $ git tag -v commons-numbers-1.0-RC1
+  $ git tag -v commons-numbers-1.1-RC1
 
 Check the commit hash then add the release tag.
 Note: The 'rel/' prefix adds the tag to the release section of the tags.
@@ -864,20 +873,20 @@ This cannot be deleted once pushed to the main repository due to restrictions
 on this section of the tag namespace (preventing deletion of official release
 tags).
 
-  $ git checkout 1.0-release
-  $ git tag -u "__Your_key_id__" -s -m "RC1 becomes v1.0 official release." rel/commons-numbers-1.0 [commit hash]
-  $ git tag -v rel/commons-numbers-1.0
+  $ git checkout 1.1-release
+  $ git tag -u "__Your_key_id__" -s -m "RC1 becomes v1.1 official release." rel/commons-numbers-1.1 [commit hash]
+  $ git tag -v rel/commons-numbers-1.1
   $ git log -1
-  $ git push --tags
+  $ git push origin rel/commons-numbers-1.1
 
 
 (23)
 Switch back to the "master" branch.
 We now prepare for the next round of development (here we assume that the
-next version will be 1.1).
+next version will be 1.2).
 
   (23a)
-  Retrieve changes made on the "1.0-release branch" (so that the web site will
+  Retrieve changes made on the "1.1-release branch" (so that the web site will
   contain up-to-date information):
 
     $ git cherry-pick -n [release commit range]
@@ -889,7 +898,7 @@ next version will be 1.1).
   (23b)
   Edit every "pom.xml" file (i.e. for each module) to contain
 
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
 
   This can be done using maven:
 
@@ -901,8 +910,8 @@ next version will be 1.1).
   Double-check that the "pom.xml" files *really* have a "-SNAPSHOT" suffix
   in the "<version>" property.
 
-  $ git grep '1.0-SNAPSHOT'    [old version number]
-  $ git grep '1.1-SNAPSHOT'    [new version number]
+  $ git grep '1.1-SNAPSHOT'    [old version number]
+  $ git grep '1.2-SNAPSHOT'    [new version number]
   $ git grep '<version>'
 
   Then commit them.
@@ -915,10 +924,10 @@ next version will be 1.1).
 
   An updated will involve:
 
-  1. Replacing the <version>1.0-beta1</version> example XML for the maven dependency to
-     <version>1.0</version>.
+  1. Replacing the <version>1.0</version> example XML for the maven dependency to
+     <version>1.1</version>.
   2. Updating any badges for Javadocs. This can be done using search and replace
-     of '1.0-beta1.svg' for '1.0-beta1.svg' and '/1.0-beta1)' for '/1.0)'.
+     of '1.0.svg' for '1.0.svg' and '/1.0)' for '/1.1)'.
 
   Check the changes using 'git diff' and commit.
 
@@ -950,10 +959,10 @@ the Apache mailer daemon.
 You can use the following message as a template:
 
 Subject:
-[ANNOUNCE] Apache Commons Numbers Version 1.0 Released
+[ANNOUNCE] Apache Commons Numbers Version 1.1 Released
 ----------
 The Apache Commons Team is pleased to announce the availability of
-version 1.0 of "Apache Commons Numbers".
+version 1.1 of "Apache Commons Numbers".
 
 Apache Commons Numbers provides number types and utilities.
 
@@ -996,7 +1005,7 @@ Update JIRA to close all issues resolved in this release and prepare for the nex
       Step 1: Select the issues to close.
       Step 2: Select 'Transition issues'.
       Step 3: Select to close.
-      Step 4: Enter comment: 'Closed by release 1.0'.
+      Step 4: Enter comment: 'Closed by release 1.1'.
               Unselect 'Send mail for this update'.
       Confirm.
 
@@ -1023,7 +1032,7 @@ from apache personal area:
 
   $ lftp sftp://__Your_apache_login__@home.apache.org
      lftp you@home.apache.org:~> cd public_html
-     lftp you@home.apache.org:~/public_html> rm -rf commons-numbers-1.0-RC1-site
+     lftp you@home.apache.org:~/public_html> rm -rf commons-numbers-1.1-RC1-site
      lftp you@home.apache.org:~/public_html> bye
 
 (27)


[commons-numbers] 02/05: Update README pages for v1.1

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit 16d9634f71fe094fcdc9b91423d461d599e1c622
Author: aherbert <ah...@apache.org>
AuthorDate: Tue Nov 1 10:47:10 2022 +0000

    Update README pages for v1.1
---
 README.md                                 | 6 +++---
 commons-numbers-angle/README.md           | 4 ++--
 commons-numbers-arrays/README.md          | 4 ++--
 commons-numbers-combinatorics/README.md   | 4 ++--
 commons-numbers-complex-streams/README.md | 4 ++--
 commons-numbers-complex/README.md         | 4 ++--
 commons-numbers-core/README.md            | 4 ++--
 commons-numbers-field/README.md           | 4 ++--
 commons-numbers-fraction/README.md        | 4 ++--
 commons-numbers-gamma/README.md           | 4 ++--
 commons-numbers-primes/README.md          | 4 ++--
 commons-numbers-quaternion/README.md      | 4 ++--
 commons-numbers-rootfinder/README.md      | 4 ++--
 13 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/README.md b/README.md
index 50a0a9c5..9793efe6 100644
--- a/README.md
+++ b/README.md
@@ -81,17 +81,17 @@ Alternatively you can pull it from the central Maven repositories, for example:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-core</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-complex</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-quaternion</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-angle/README.md b/commons-numbers-angle/README.md
index 9da67cf7..d2697a12 100644
--- a/commons-numbers-angle/README.md
+++ b/commons-numbers-angle/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Angle
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-angle/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-angle/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-angle/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-angle/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-angle/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-angle/1.1)
 
 Utilities related to the concept of angle.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-angle</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-arrays/README.md b/commons-numbers-arrays/README.md
index 53fd4f8a..a5da65f3 100644
--- a/commons-numbers-arrays/README.md
+++ b/commons-numbers-arrays/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Arrays
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-arrays/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-arrays/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-arrays/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-arrays/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-arrays/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-arrays/1.1)
 
 Array utilities.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-arrays</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-combinatorics/README.md b/commons-numbers-combinatorics/README.md
index 6a7abf55..6bcee499 100644
--- a/commons-numbers-combinatorics/README.md
+++ b/commons-numbers-combinatorics/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Combinatorics
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-combinatorics/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-combinatorics/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-combinatorics/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-combinatorics/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-combinatorics/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-combinatorics/1.1)
 
 Combinatorics utilities such as factorial and binomial coefficients.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-combinatorics</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-complex-streams/README.md b/commons-numbers-complex-streams/README.md
index 5431c9ef..616a33b3 100644
--- a/commons-numbers-complex-streams/README.md
+++ b/commons-numbers-complex-streams/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Complex Streams
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-complex-streams/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-complex-streams/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-complex-streams/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-complex-streams/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-complex-streams/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-complex-streams/1.1)
 
 Arrays, streams and collections of complex numbers.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-complex-streams</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-complex/README.md b/commons-numbers-complex/README.md
index bf32f1c6..92b90e87 100644
--- a/commons-numbers-complex/README.md
+++ b/commons-numbers-complex/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Complex
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-complex/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-complex/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-complex/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-complex/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-complex/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-complex/1.1)
 
 Complex numbers.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-complex</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-core/README.md b/commons-numbers-core/README.md
index 0f57475a..a64837b8 100644
--- a/commons-numbers-core/README.md
+++ b/commons-numbers-core/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Core
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-core/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-core/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-core/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-core/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-core/1.1)
 
 Basic utilities.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-core</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-field/README.md b/commons-numbers-field/README.md
index 1215806f..6d676a09 100644
--- a/commons-numbers-field/README.md
+++ b/commons-numbers-field/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Field
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-field/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-field/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-field/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-field/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-field/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-field/1.1)
 
 Utilities related to the concept of field.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-field</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-fraction/README.md b/commons-numbers-fraction/README.md
index 06c38f1f..44ed7c7d 100644
--- a/commons-numbers-fraction/README.md
+++ b/commons-numbers-fraction/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Fraction
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-fraction/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-fraction/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-fraction/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-fraction/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-fraction/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-fraction/1.1)
 
 Fraction utilities.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-fraction</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-gamma/README.md b/commons-numbers-gamma/README.md
index 6ba640fa..2aec0732 100644
--- a/commons-numbers-gamma/README.md
+++ b/commons-numbers-gamma/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Gamma
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-gamma/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-gamma/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-gamma/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-gamma/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-gamma/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-gamma/1.1)
 
 Gamma family of functions.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-gamma</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-primes/README.md b/commons-numbers-primes/README.md
index 81b81926..0ce50fc4 100644
--- a/commons-numbers-primes/README.md
+++ b/commons-numbers-primes/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Primes
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-primes/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-primes/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-primes/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-primes/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-primes/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-primes/1.1)
 
 Utilities related to prime numbers.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-primes</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-quaternion/README.md b/commons-numbers-quaternion/README.md
index 5044315d..08bfdf54 100644
--- a/commons-numbers-quaternion/README.md
+++ b/commons-numbers-quaternion/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Quaternion
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-quaternion/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-quaternion/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-quaternion/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-quaternion/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-quaternion/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-quaternion/1.1)
 
 Quaternion numbers.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-quaternion</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 
diff --git a/commons-numbers-rootfinder/README.md b/commons-numbers-rootfinder/README.md
index 09c9c1fb..6fa9f7e7 100644
--- a/commons-numbers-rootfinder/README.md
+++ b/commons-numbers-rootfinder/README.md
@@ -46,7 +46,7 @@ Apache Commons Numbers Root Finder
 [![Build Status](https://github.com/apache/commons-numbers/actions/workflows/maven.yml/badge.svg)](https://github.com/apache/commons-numbers/actions/workflows/maven.yml)
 [![Coverage Status](https://codecov.io/gh/apache/commons-numbers/branch/master/graph/badge.svg)](https://app.codecov.io/gh/apache/commons-numbers)
 [![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-rootfinder/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-numbers-rootfinder/)
-[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-rootfinder/1.0.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-rootfinder/1.0)
+[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-numbers-rootfinder/1.1.svg)](https://javadoc.io/doc/org.apache.commons/commons-numbers-rootfinder/1.1)
 
 Root finding utilities.
 
@@ -67,7 +67,7 @@ Alternatively you can pull it from the central Maven repositories:
 <dependency>
   <groupId>org.apache.commons</groupId>
   <artifactId>commons-numbers-rootfinder</artifactId>
-  <version>1.0</version>
+  <version>1.1</version>
 </dependency>
 ```
 


[commons-numbers] 01/05: Update following release 1.1

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit c4b9ef491c7da8e3efd10db7189472c5cf730e67
Author: aherbert <ah...@apache.org>
AuthorDate: Tue Nov 1 10:44:09 2022 +0000

    Update following release 1.1
---
 RELEASE-NOTES.txt                                  | 71 ++++++++++++++++++++++
 commons-numbers-angle/pom.xml                      |  2 +-
 commons-numbers-angle/src/site/site.xml            |  2 +
 commons-numbers-arrays/pom.xml                     |  2 +-
 commons-numbers-arrays/src/site/site.xml           |  2 +
 commons-numbers-bom/pom.xml                        |  4 +-
 commons-numbers-combinatorics/pom.xml              |  2 +-
 commons-numbers-combinatorics/src/site/site.xml    |  2 +
 commons-numbers-complex-streams/pom.xml            |  2 +-
 commons-numbers-complex/pom.xml                    |  2 +-
 commons-numbers-complex/src/site/site.xml          |  2 +
 commons-numbers-core/pom.xml                       |  2 +-
 commons-numbers-core/src/site/site.xml             |  2 +
 commons-numbers-docs/pom.xml                       | 26 ++++----
 commons-numbers-examples/examples-jmh/pom.xml      |  2 +-
 commons-numbers-examples/pom.xml                   |  2 +-
 commons-numbers-field/pom.xml                      |  2 +-
 commons-numbers-field/src/site/site.xml            |  2 +
 commons-numbers-fraction/pom.xml                   |  2 +-
 commons-numbers-fraction/src/site/site.xml         |  2 +
 commons-numbers-gamma/pom.xml                      |  2 +-
 commons-numbers-gamma/src/site/site.xml            |  2 +
 commons-numbers-primes/pom.xml                     |  2 +-
 commons-numbers-primes/src/site/site.xml           |  2 +
 commons-numbers-quaternion/pom.xml                 |  2 +-
 commons-numbers-quaternion/src/site/site.xml       |  2 +
 commons-numbers-rootfinder/pom.xml                 |  2 +-
 commons-numbers-rootfinder/src/site/site.xml       |  2 +
 dist-archive/pom.xml                               | 10 ++-
 pom.xml                                            |  2 +-
 src/changes/changes.xml                            | 23 ++++---
 .../resources/release-notes/RELEASE-NOTES-1.1.txt  | 71 ++++++++++++++++++++++
 src/site/xdoc/download_numbers.xml                 | 26 ++++----
 src/site/xdoc/release-history.xml                  |  3 +
 34 files changed, 228 insertions(+), 58 deletions(-)

diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index b7f93984..2d8e52a9 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,4 +1,75 @@
 
+              Apache Commons Numbers 1.1 RELEASE NOTES
+
+The Apache Commons Numbers team is pleased to announce the release of
+commons-numbers-parent-1.1
+
+The Apache Commons Numbers project provides number types and utilities.
+
+New features, updates and bug fixes. Adds a commons-numbers-bom module. Requires Java 8.
+
+Changes in this version include:
+
+New features:
+o NUMBERS-70:   Add a user guide.
+o NUMBERS-190:  Add a Bill of Materials (BOM) to aid in dependency management when referencing
+        multiple Apache Commons Numbers artifacts. The BOM should be used to ensure all
+        imported artifacts are compatible.
+o NUMBERS-181:  Updated support for the beta functions. "RegularizedBeta": Added the
+        complement and derivative of the regularized beta function.
+        Added "IncompleteBeta" and "Beta" classes.
+        Functionality is ported from the Boost C++ library.
+o NUMBERS-180:  "GammaRatio": Compute the ratio of two gamma functions.
+o NUMBERS-177:  "Erfcx": Compute a scaled complementary error function:
+        erfcx(z) = erfc(z) * exp(z*z).
+o NUMBERS-175:  "GeneralizedContinuedFraction": A continued fraction class to compute using a
+        generator. Allows evaluation of continued fractions from a regular series where
+        coefficients can be computed iteratively from the previous coefficients.
+
+Fixed Bugs:
+o NUMBERS-185:  "Precision": Allow Precision.compareTo using a maxUlps to be used for sorting.
+        This corrects handling of NaN comparisons.
+o NUMBERS-182:  "LogBeta": Avoid overflow for tiny arguments.
+o           "BrentSolver": Avoid overflow creating the initial value between the lower and upper.
+o NUMBERS-173:  "ContinuedFraction": Set a minimum bound on the relative error epsilon. Prevents
+        an infinite loop when the epsilon is zero.
+o           "FactorialDouble": Prevent caching values that are infinite. The cache will support
+        factorials up to 170.
+o NUMBERS-170:  "RegularizedBeta": Detect edge cases for arguments that can be evaluated by
+        exploiting properties of the regularized beta function.
+o NUMBERS-168:  "BrentSolver": Identify brackets with small objective values.
+o           Fix wrong javadoc. Thanks to Arturo Bernal.
+
+Changes:
+o NUMBERS-184:  "Precision": Reduce number of operations in Precision.equals using a maxUlps.
+o NUMBERS-183:  Improve the binomial coefficient classes. Avoid recursive method calls.
+        Avoid overflow for BinomialCoefficientDouble for large results close to infinity.
+        Use precomputed factorials and the LogBeta function for efficiency.
+o NUMBERS-178:  "Factorial/FactorialDouble": Tabulate all factorials with exact 64-bit double
+        representations of n! up to n=170. This change deprecates the FactorialDouble
+        class and removes obsolete caching functionality.
+o NUMBERS-176:  "ContinuedFraction": Update to use a shared implementation with
+        GeneralizedContinuedFraction.
+o NUMBERS-174:  "Gamma/LogGamma/RegularizedGamma": Update the gamma function implementations to
+        increase accuracy and support for extreme values.
+        Functionality is ported from the Boost C++ library.
+o NUMBERS-172:  "Erf/Erfc": Use a rational function approximation accurate to 53-bits of precision.
+        This replaces the use of the regularized gamma functions P and Q and increases accuracy
+        at extreme limits of the function. Execution speed is improved.
+        Functionality is ported from the Boost C++ library.
+o NUMBERS-171:  "InverseErfc": Support full range of [0, 2]. This lowers the supported
+        minimum value from 2^-53 to double min value. Execution speed is improved.
+        Functionality is ported from the Boost C++ library.
+
+
+For complete information on Apache Commons Numbers, including instructions on how to submit bug
+reports, patches, or suggestions for improvement, see the Apache Commons Numbers website:
+
+http://commons.apache.org/proper/commons-numbers/
+
+
+=============================================================================
+
               Apache Commons Numbers 1.0 RELEASE NOTES
 
 The Apache Commons Numbers team is pleased to announce the release of
diff --git a/commons-numbers-angle/pom.xml b/commons-numbers-angle/pom.xml
index caebc1e8..3d296e0b 100644
--- a/commons-numbers-angle/pom.xml
+++ b/commons-numbers-angle/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-angle</artifactId>
diff --git a/commons-numbers-angle/src/site/site.xml b/commons-numbers-angle/src/site/site.xml
index e404cae1..f00f802a 100644
--- a/commons-numbers-angle/src/site/site.xml
+++ b/commons-numbers-angle/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-angle/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-angle/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/commons-numbers-arrays/pom.xml b/commons-numbers-arrays/pom.xml
index 3a7ceb8b..2d86e9a1 100644
--- a/commons-numbers-arrays/pom.xml
+++ b/commons-numbers-arrays/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-arrays</artifactId>
diff --git a/commons-numbers-arrays/src/site/site.xml b/commons-numbers-arrays/src/site/site.xml
index f4ea4ce9..82974642 100644
--- a/commons-numbers-arrays/src/site/site.xml
+++ b/commons-numbers-arrays/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-arrays/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-arrays/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/commons-numbers-bom/pom.xml b/commons-numbers-bom/pom.xml
index 60e64cd9..ab8950c6 100644
--- a/commons-numbers-bom/pom.xml
+++ b/commons-numbers-bom/pom.xml
@@ -21,11 +21,11 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-bom</artifactId>
-  <version>1.1-SNAPSHOT</version>
+  <version>1.2-SNAPSHOT</version>
   <name>Apache Commons Numbers (Bill of Materials)</name>
   <packaging>pom</packaging>
 
diff --git a/commons-numbers-combinatorics/pom.xml b/commons-numbers-combinatorics/pom.xml
index 4eb8bfa4..223480b1 100644
--- a/commons-numbers-combinatorics/pom.xml
+++ b/commons-numbers-combinatorics/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-combinatorics</artifactId>
diff --git a/commons-numbers-combinatorics/src/site/site.xml b/commons-numbers-combinatorics/src/site/site.xml
index 0d968268..1bd05daf 100644
--- a/commons-numbers-combinatorics/src/site/site.xml
+++ b/commons-numbers-combinatorics/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-combinatorics/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-combinatorics/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/commons-numbers-complex-streams/pom.xml b/commons-numbers-complex-streams/pom.xml
index 994797ae..1c57118e 100644
--- a/commons-numbers-complex-streams/pom.xml
+++ b/commons-numbers-complex-streams/pom.xml
@@ -23,7 +23,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-complex-streams</artifactId>
diff --git a/commons-numbers-complex/pom.xml b/commons-numbers-complex/pom.xml
index dcc7c230..11b7b6f1 100644
--- a/commons-numbers-complex/pom.xml
+++ b/commons-numbers-complex/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-complex</artifactId>
diff --git a/commons-numbers-complex/src/site/site.xml b/commons-numbers-complex/src/site/site.xml
index 7cddab35..d02437fb 100644
--- a/commons-numbers-complex/src/site/site.xml
+++ b/commons-numbers-complex/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-complex/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-complex/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/commons-numbers-core/pom.xml b/commons-numbers-core/pom.xml
index 488f8715..bd449875 100644
--- a/commons-numbers-core/pom.xml
+++ b/commons-numbers-core/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-core</artifactId>
diff --git a/commons-numbers-core/src/site/site.xml b/commons-numbers-core/src/site/site.xml
index 96513336..409ad3eb 100644
--- a/commons-numbers-core/src/site/site.xml
+++ b/commons-numbers-core/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-core/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-core/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/commons-numbers-docs/pom.xml b/commons-numbers-docs/pom.xml
index edb1fd62..b52fe188 100644
--- a/commons-numbers-docs/pom.xml
+++ b/commons-numbers-docs/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-docs</artifactId>
@@ -57,59 +57,59 @@
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-angle</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-arrays</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-combinatorics</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-complex</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-core</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-field</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-fraction</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-gamma</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-primes</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-quaternion</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-numbers-rootfinder</artifactId>
-      <version>1.1-SNAPSHOT</version>
+      <version>1.2-SNAPSHOT</version>
     </dependency>
-  </dependencies >
+  </dependencies>
 
   <build>
     <sourceDirectory>src</sourceDirectory>
diff --git a/commons-numbers-examples/examples-jmh/pom.xml b/commons-numbers-examples/examples-jmh/pom.xml
index ff219a39..ab519301 100644
--- a/commons-numbers-examples/examples-jmh/pom.xml
+++ b/commons-numbers-examples/examples-jmh/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-examples</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-examples-jmh</artifactId>
diff --git a/commons-numbers-examples/pom.xml b/commons-numbers-examples/pom.xml
index e20d3052..4da22327 100644
--- a/commons-numbers-examples/pom.xml
+++ b/commons-numbers-examples/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-examples</artifactId>
diff --git a/commons-numbers-field/pom.xml b/commons-numbers-field/pom.xml
index d3c20a0d..09933a61 100644
--- a/commons-numbers-field/pom.xml
+++ b/commons-numbers-field/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-field</artifactId>
diff --git a/commons-numbers-field/src/site/site.xml b/commons-numbers-field/src/site/site.xml
index bfdbc9c1..f1aab286 100644
--- a/commons-numbers-field/src/site/site.xml
+++ b/commons-numbers-field/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-field/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-field/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/commons-numbers-fraction/pom.xml b/commons-numbers-fraction/pom.xml
index 732b2cb2..2adf5efa 100644
--- a/commons-numbers-fraction/pom.xml
+++ b/commons-numbers-fraction/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-fraction</artifactId>
diff --git a/commons-numbers-fraction/src/site/site.xml b/commons-numbers-fraction/src/site/site.xml
index c9866cb6..e51f5834 100644
--- a/commons-numbers-fraction/src/site/site.xml
+++ b/commons-numbers-fraction/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-fraction/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-fraction/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/commons-numbers-gamma/pom.xml b/commons-numbers-gamma/pom.xml
index d02769d1..5ce3fb0d 100644
--- a/commons-numbers-gamma/pom.xml
+++ b/commons-numbers-gamma/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-gamma</artifactId>
diff --git a/commons-numbers-gamma/src/site/site.xml b/commons-numbers-gamma/src/site/site.xml
index db5ac5c1..d5f5fbe2 100644
--- a/commons-numbers-gamma/src/site/site.xml
+++ b/commons-numbers-gamma/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-gamma/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-gamma/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/commons-numbers-primes/pom.xml b/commons-numbers-primes/pom.xml
index d617bc21..76e2de4b 100644
--- a/commons-numbers-primes/pom.xml
+++ b/commons-numbers-primes/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-primes</artifactId>
diff --git a/commons-numbers-primes/src/site/site.xml b/commons-numbers-primes/src/site/site.xml
index 31866df5..1f39d2e2 100644
--- a/commons-numbers-primes/src/site/site.xml
+++ b/commons-numbers-primes/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-primes/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-primes/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/commons-numbers-quaternion/pom.xml b/commons-numbers-quaternion/pom.xml
index c9167a60..3fa10d5f 100644
--- a/commons-numbers-quaternion/pom.xml
+++ b/commons-numbers-quaternion/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-quaternion</artifactId>
diff --git a/commons-numbers-quaternion/src/site/site.xml b/commons-numbers-quaternion/src/site/site.xml
index d842ec6c..699cd872 100644
--- a/commons-numbers-quaternion/src/site/site.xml
+++ b/commons-numbers-quaternion/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-quaternion/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-quaternion/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/commons-numbers-rootfinder/pom.xml b/commons-numbers-rootfinder/pom.xml
index c507f572..01b5ccec 100644
--- a/commons-numbers-rootfinder/pom.xml
+++ b/commons-numbers-rootfinder/pom.xml
@@ -21,7 +21,7 @@
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers-rootfinder</artifactId>
diff --git a/commons-numbers-rootfinder/src/site/site.xml b/commons-numbers-rootfinder/src/site/site.xml
index ab8caccb..48ec5ada 100644
--- a/commons-numbers-rootfinder/src/site/site.xml
+++ b/commons-numbers-rootfinder/src/site/site.xml
@@ -28,6 +28,8 @@
       <item name="Overview" href="index.html"/>
       <item name="Latest API docs (development)"
             href="apidocs/index.html"/>
+      <item name="Javadoc (1.1 release)"
+          href="http://commons.apache.org/numbers/commons-numbers-rootfinder/javadocs/api-1.1/index.html"/>
       <item name="Javadoc (1.0 release)"
           href="http://commons.apache.org/numbers/commons-numbers-rootfinder/javadocs/api-1.0/index.html"/>
       <item name="Javadoc (1.0-beta1 release)"
diff --git a/dist-archive/pom.xml b/dist-archive/pom.xml
index 0906edcc..deeb9514 100644
--- a/dist-archive/pom.xml
+++ b/dist-archive/pom.xml
@@ -17,15 +17,13 @@ KIND, either express or implied.  See the License for the
 specific language governing permissions and limitations
 under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
     <groupId>org.apache.commons</groupId>
     <artifactId>commons-numbers-parent</artifactId>
-    <version>1.1-SNAPSHOT</version>
+    <version>1.2-SNAPSHOT</version>
   </parent>
 
   <artifactId>commons-numbers</artifactId>
@@ -41,8 +39,8 @@ under the License.
     <commons.siteOutputDirectory>${basedir}/../target/site</commons.siteOutputDirectory>
     <commons.releaseNotesLocation>${basedir}/../RELEASE-NOTES.txt</commons.releaseNotesLocation>
     <commons.distSvnStagingUrl>scm:svn:https://dist.apache.org/repos/dist/dev/commons/${commons.componentid}</commons.distSvnStagingUrl>
-    <commons.releaseManagerName>Matt Juntunen</commons.releaseManagerName>
-    <commons.releaseManagerKey>7DD53AEFEDF1C3D392B51EBE346F4FCECFB70B1A</commons.releaseManagerKey>
+    <commons.releaseManagerName>Alex Herbert</commons.releaseManagerName>
+    <commons.releaseManagerKey>BC87A3FD0A54480F0BADBEBD21939FF0CA2A6567</commons.releaseManagerKey>
   </properties>
 
   <build>
diff --git a/pom.xml b/pom.xml
index 385e80af..54963b5c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -25,7 +25,7 @@
   </parent>
 
   <artifactId>commons-numbers-parent</artifactId>
-  <version>1.1-SNAPSHOT</version>
+  <version>1.2-SNAPSHOT</version>
   <packaging>pom</packaging>
   <name>Apache Commons Numbers</name>
   <description>The Apache Commons Numbers project provides number types and utilities.</description>
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index ce0dba1e..d745b9ce 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -52,13 +52,16 @@ If the output is not quite correct, check for invisible trailing spaces!
     <title>Apache Commons Numbers Release Notes</title>
   </properties>
   <body>
-    <release version="1.1" date="TBD" description="
+    <release version="1.1" date="2022-11-01" description="
 New features, updates and bug fixes. Adds a commons-numbers-bom module. Requires Java 8.
 ">
+      <action dev="aherbert" type="add" issue="NUMBERS-70">
+        Add a user guide.
+      </action>
       <action dev="aherbert" type="add" issue="NUMBERS-190">
-        Add a Bill of Materials (BOM) to aid in dependency management when referencing multiple
-        Apache Commons Numbers artifacts. The BOM should be used to ensure all imported artifacts are
-        compatible.
+        Add a Bill of Materials (BOM) to aid in dependency management when referencing
+        multiple Apache Commons Numbers artifacts. The BOM should be used to ensure all
+        imported artifacts are compatible.
       </action>
       <action dev="aherbert" type="fix" issue="NUMBERS-185">
         "Precision": Allow Precision.compareTo using a maxUlps to be used for sorting.
@@ -88,7 +91,8 @@ New features, updates and bug fixes. Adds a commons-numbers-bom module. Requires
         "BrentSolver": Avoid overflow creating the initial value between the lower and upper.
       </action>
       <action dev="aherbert" type="add" issue="NUMBERS-177">
-        "Erfcx": Compute a scaled complementary error function: erfcx(z) = erfc(z) * exp(z*z).
+        "Erfcx": Compute a scaled complementary error function:
+        erfcx(z) = erfc(z) * exp(z*z).
       </action>
       <action dev="aherbert" type="update" issue="NUMBERS-178">
         "Factorial/FactorialDouble": Tabulate all factorials with exact 64-bit double
@@ -96,7 +100,8 @@ New features, updates and bug fixes. Adds a commons-numbers-bom module. Requires
         class and removes obsolete caching functionality.
       </action>
       <action dev="aherbert" type="update" issue="NUMBERS-176">
-        "ContinuedFraction": Update to use a shared implementation with GeneralizedContinuedFraction.
+        "ContinuedFraction": Update to use a shared implementation with
+        GeneralizedContinuedFraction.
       </action>
       <action dev="aherbert" type="update" issue="NUMBERS-174">
         "Gamma/LogGamma/RegularizedGamma": Update the gamma function implementations to
@@ -104,9 +109,9 @@ New features, updates and bug fixes. Adds a commons-numbers-bom module. Requires
         Functionality is ported from the Boost C++ library.
       </action>
       <action dev="aherbert" type="add" issue="NUMBERS-175">
-        "GeneralizedContinuedFraction": A continued fraction class to compute using a generator.
-        Allows evaluation of continued fractions from a regular series where coefficients can
-        be computed iteratively from the previous coefficients.
+        "GeneralizedContinuedFraction": A continued fraction class to compute using a
+        generator. Allows evaluation of continued fractions from a regular series where
+        coefficients can be computed iteratively from the previous coefficients.
       </action>
       <action dev="aherbert" type="fix" issue="NUMBERS-173">
         "ContinuedFraction": Set a minimum bound on the relative error epsilon. Prevents
diff --git a/RELEASE-NOTES.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.1.txt
similarity index 54%
copy from RELEASE-NOTES.txt
copy to src/site/resources/release-notes/RELEASE-NOTES-1.1.txt
index b7f93984..2d8e52a9 100644
--- a/RELEASE-NOTES.txt
+++ b/src/site/resources/release-notes/RELEASE-NOTES-1.1.txt
@@ -1,4 +1,75 @@
 
+              Apache Commons Numbers 1.1 RELEASE NOTES
+
+The Apache Commons Numbers team is pleased to announce the release of
+commons-numbers-parent-1.1
+
+The Apache Commons Numbers project provides number types and utilities.
+
+New features, updates and bug fixes. Adds a commons-numbers-bom module. Requires Java 8.
+
+Changes in this version include:
+
+New features:
+o NUMBERS-70:   Add a user guide.
+o NUMBERS-190:  Add a Bill of Materials (BOM) to aid in dependency management when referencing
+        multiple Apache Commons Numbers artifacts. The BOM should be used to ensure all
+        imported artifacts are compatible.
+o NUMBERS-181:  Updated support for the beta functions. "RegularizedBeta": Added the
+        complement and derivative of the regularized beta function.
+        Added "IncompleteBeta" and "Beta" classes.
+        Functionality is ported from the Boost C++ library.
+o NUMBERS-180:  "GammaRatio": Compute the ratio of two gamma functions.
+o NUMBERS-177:  "Erfcx": Compute a scaled complementary error function:
+        erfcx(z) = erfc(z) * exp(z*z).
+o NUMBERS-175:  "GeneralizedContinuedFraction": A continued fraction class to compute using a
+        generator. Allows evaluation of continued fractions from a regular series where
+        coefficients can be computed iteratively from the previous coefficients.
+
+Fixed Bugs:
+o NUMBERS-185:  "Precision": Allow Precision.compareTo using a maxUlps to be used for sorting.
+        This corrects handling of NaN comparisons.
+o NUMBERS-182:  "LogBeta": Avoid overflow for tiny arguments.
+o           "BrentSolver": Avoid overflow creating the initial value between the lower and upper.
+o NUMBERS-173:  "ContinuedFraction": Set a minimum bound on the relative error epsilon. Prevents
+        an infinite loop when the epsilon is zero.
+o           "FactorialDouble": Prevent caching values that are infinite. The cache will support
+        factorials up to 170.
+o NUMBERS-170:  "RegularizedBeta": Detect edge cases for arguments that can be evaluated by
+        exploiting properties of the regularized beta function.
+o NUMBERS-168:  "BrentSolver": Identify brackets with small objective values.
+o           Fix wrong javadoc. Thanks to Arturo Bernal.
+
+Changes:
+o NUMBERS-184:  "Precision": Reduce number of operations in Precision.equals using a maxUlps.
+o NUMBERS-183:  Improve the binomial coefficient classes. Avoid recursive method calls.
+        Avoid overflow for BinomialCoefficientDouble for large results close to infinity.
+        Use precomputed factorials and the LogBeta function for efficiency.
+o NUMBERS-178:  "Factorial/FactorialDouble": Tabulate all factorials with exact 64-bit double
+        representations of n! up to n=170. This change deprecates the FactorialDouble
+        class and removes obsolete caching functionality.
+o NUMBERS-176:  "ContinuedFraction": Update to use a shared implementation with
+        GeneralizedContinuedFraction.
+o NUMBERS-174:  "Gamma/LogGamma/RegularizedGamma": Update the gamma function implementations to
+        increase accuracy and support for extreme values.
+        Functionality is ported from the Boost C++ library.
+o NUMBERS-172:  "Erf/Erfc": Use a rational function approximation accurate to 53-bits of precision.
+        This replaces the use of the regularized gamma functions P and Q and increases accuracy
+        at extreme limits of the function. Execution speed is improved.
+        Functionality is ported from the Boost C++ library.
+o NUMBERS-171:  "InverseErfc": Support full range of [0, 2]. This lowers the supported
+        minimum value from 2^-53 to double min value. Execution speed is improved.
+        Functionality is ported from the Boost C++ library.
+
+
+For complete information on Apache Commons Numbers, including instructions on how to submit bug
+reports, patches, or suggestions for improvement, see the Apache Commons Numbers website:
+
+http://commons.apache.org/proper/commons-numbers/
+
+
+=============================================================================
+
               Apache Commons Numbers 1.0 RELEASE NOTES
 
 The Apache Commons Numbers team is pleased to announce the release of
diff --git a/src/site/xdoc/download_numbers.xml b/src/site/xdoc/download_numbers.xml
index 8ef0aca7..5fd700be 100644
--- a/src/site/xdoc/download_numbers.xml
+++ b/src/site/xdoc/download_numbers.xml
@@ -113,32 +113,32 @@ limitations under the License.
       </p>
     </subsection>
     </section>
-    <section name="Apache Commons Numbers 1.0 (requires Java 8+)">
+    <section name="Apache Commons Numbers 1.1 (requires Java 8+)">
       <subsection name="Binaries">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/numbers/binaries/commons-numbers-1.0-bin.tar.gz">commons-numbers-1.0-bin.tar.gz</a></td>
-              <td><a href="https://www.apache.org/dist/commons/numbers/binaries/commons-numbers-1.0-bin.tar.gz.sha512">sha512</a></td>
-              <td><a href="https://www.apache.org/dist/commons/numbers/binaries/commons-numbers-1.0-bin.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/numbers/binaries/commons-numbers-1.1-bin.tar.gz">commons-numbers-1.1-bin.tar.gz</a></td>
+              <td><a href="https://www.apache.org/dist/commons/numbers/binaries/commons-numbers-1.1-bin.tar.gz.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/numbers/binaries/commons-numbers-1.1-bin.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/numbers/binaries/commons-numbers-1.0-bin.zip">commons-numbers-1.0-bin.zip</a></td>
-              <td><a href="https://www.apache.org/dist/commons/numbers/binaries/commons-numbers-1.0-bin.zip.sha512">sha512</a></td>
-              <td><a href="https://www.apache.org/dist/commons/numbers/binaries/commons-numbers-1.0-bin.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/numbers/binaries/commons-numbers-1.1-bin.zip">commons-numbers-1.1-bin.zip</a></td>
+              <td><a href="https://www.apache.org/dist/commons/numbers/binaries/commons-numbers-1.1-bin.zip.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/numbers/binaries/commons-numbers-1.1-bin.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>
       <subsection name="Source">
         <table>
           <tr>
-              <td><a href="[preferred]/commons/numbers/source/commons-numbers-1.0-src.tar.gz">commons-numbers-1.0-src.tar.gz</a></td>
-              <td><a href="https://www.apache.org/dist/commons/numbers/source/commons-numbers-1.0-src.tar.gz.sha512">sha512</a></td>
-              <td><a href="https://www.apache.org/dist/commons/numbers/source/commons-numbers-1.0-src.tar.gz.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/numbers/source/commons-numbers-1.1-src.tar.gz">commons-numbers-1.1-src.tar.gz</a></td>
+              <td><a href="https://www.apache.org/dist/commons/numbers/source/commons-numbers-1.1-src.tar.gz.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/numbers/source/commons-numbers-1.1-src.tar.gz.asc">pgp</a></td>
           </tr>
           <tr>
-              <td><a href="[preferred]/commons/numbers/source/commons-numbers-1.0-src.zip">commons-numbers-1.0-src.zip</a></td>
-              <td><a href="https://www.apache.org/dist/commons/numbers/source/commons-numbers-1.0-src.zip.sha512">sha512</a></td>
-              <td><a href="https://www.apache.org/dist/commons/numbers/source/commons-numbers-1.0-src.zip.asc">pgp</a></td>
+              <td><a href="[preferred]/commons/numbers/source/commons-numbers-1.1-src.zip">commons-numbers-1.1-src.zip</a></td>
+              <td><a href="https://www.apache.org/dist/commons/numbers/source/commons-numbers-1.1-src.zip.sha512">sha512</a></td>
+              <td><a href="https://www.apache.org/dist/commons/numbers/source/commons-numbers-1.1-src.zip.asc">pgp</a></td>
           </tr>
         </table>
       </subsection>
diff --git a/src/site/xdoc/release-history.xml b/src/site/xdoc/release-history.xml
index 24f7b478..e5c425ad 100644
--- a/src/site/xdoc/release-history.xml
+++ b/src/site/xdoc/release-history.xml
@@ -24,6 +24,9 @@ limitations under the License.
       <p><em>Note.</em> For older release javadocs see the individual artifact sub-sites.</p>
       <table>
         <tr><th>Version</th><th>Release date (YYYY-MM-DD)</th><th>Required Java Version</th><th>Release notes</th></tr>
+        <tr>
+          <td>1.0</td><td>2022-11-01</td><td>8+</td><td><a href="release-notes/RELEASE-NOTES-1.1.txt">release notes for 1.1</a></td>
+        </tr>
         <tr>
           <td>1.0</td><td>2021-07-17</td><td>8+</td><td><a href="release-notes/RELEASE-NOTES-1.0.txt">release notes for 1.0</a></td>
         </tr>


[commons-numbers] 03/05: Update commons version properties for latest release (v1.1)

Posted by ah...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit 62c32c5a0916e17c531381d688f76c27012b3101
Author: aherbert <ah...@apache.org>
AuthorDate: Tue Nov 1 10:48:13 2022 +0000

    Update commons version properties for latest release (v1.1)
---
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pom.xml b/pom.xml
index 54963b5c..9861d348 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,8 +47,8 @@
     <!-- This flag should only be true in the dist-archive module. -->
     <commons.release.isDistModule>false</commons.release.isDistModule>
     <!-- do not use snapshot suffix here -->
-    <commons.release.version>1.1</commons.release.version>
-    <commons.bc.version>1.0</commons.bc.version>
+    <commons.release.version>1.2</commons.release.version>
+    <commons.bc.version>1.1</commons.bc.version>
     <commons.rc.version>RC1</commons.rc.version>
     <commons.release.desc>(requires Java 8+)</commons.release.desc>
     <commons.binary.suffix>-bin</commons.binary.suffix>