Repository: commons-rng Updated Branches: refs/heads/1.1 a464b9b6d -> 6a937e8f2
Rat exclude, and add RELEASE-NOTES-1.1.txt to release-history in site Project: http://git-wip-us.apache.org/repos/asf/commons-rng/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-rng/commit/6a937e8f Tree: http://git-wip-us.apache.org/repos/asf/commons-rng/tree/6a937e8f Diff: http://git-wip-us.apache.org/repos/asf/commons-rng/diff/6a937e8f Branch: refs/heads/1.1 Commit: 6a937e8f29a41025c78ca1f61d9d9400cb61d068 Parents: a464b9b Author: Rob Tompkins <chtom...@gmail.com> Authored: Tue Jul 24 21:03:46 2018 -0400 Committer: Rob Tompkins <chtom...@gmail.com> Committed: Tue Jul 24 21:03:46 2018 -0400 ---------------------------------------------------------------------- pom.xml | 1 + .../release-notes/RELEASE-NOTES-1.1.txt | 67 ++++++++++++++++++++ 2 files changed, 68 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-rng/blob/6a937e8f/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 7efb713..e6de374 100644 --- a/pom.xml +++ b/pom.xml @@ -223,6 +223,7 @@ <exclude>.ekstazi/**</exclude> <exclude>**/site-content/**</exclude> <exclude>**/target/**</exclude> + <exclude>src/site/resources/release-notes/RELEASE-NOTES-*.txt</exclude> <exclude>src/site/resources/txt/userguide/stress/dh/**</exclude> <exclude>src/site/resources/txt/userguide/stress/tu/**</exclude> <exclude>dist-archive/**</exclude> http://git-wip-us.apache.org/repos/asf/commons-rng/blob/6a937e8f/src/site/resources/release-notes/RELEASE-NOTES-1.1.txt ---------------------------------------------------------------------- diff --git a/src/site/resources/release-notes/RELEASE-NOTES-1.1.txt b/src/site/resources/release-notes/RELEASE-NOTES-1.1.txt new file mode 100644 index 0000000..eaaedc5 --- /dev/null +++ b/src/site/resources/release-notes/RELEASE-NOTES-1.1.txt @@ -0,0 +1,67 @@ + Apache Commons RNG 1.1 RELEASE NOTES + +The Apache Commons RNG team is pleased to announce the commons-rng-parent-1.1 release! + +The Apache Commons RNG project provides pure-Java implementation of pseudo-random generators. + +Changes in this version include: + +New features: +o RNG-37: Implementation of the "Ziggurat" algorithm for Gaussian sampling. +o RNG-47: "DiscreteProbabilityCollectionSampler": Sampling from a collection of items + with user-defined probabilities (feature ported from "Commons Math"). +o RNG-43: "LogNormalSampler" with user-defined underlying "NormalizedGaussianSampler". +o RNG-39: "UnitSphereSampler": generate random vectors isotropically located + on the surface of a sphere (feature ported from "Commons Math"). +o RNG-36: "MarsagliaNormalizedGaussianSampler": Faster variation of the + Box-Muller algorithm. + This version is used within "AhrensDieterMarsagliaTsangGammaSampler" + "MarsagliaLogNormalSampler" and "PoissonSampler" (generated sequences + will thus differ from those generated by version 1.0 of the library). +o RNG-35: New generic "GaussianSampler" based on "NormalizedGaussianSampler" + marker interface. + Implementation of "BoxMullerNormalizedGaussianSampler" deprecates + "BoxMullerGaussianSampler". + + +Changes: +o RNG-42: Use "ZigguratNormalizedGaussianSampler" within the library. +o RNG-46: Following RNG-43, "BoxMullerLogNormalSampler" has been deprecated. + Furthermore, its base class has been removed; although it is a binary + incompatibility, it cannot cause any problem that were not already + present in code using v1.0 of the library: Calls to the base class + would have raised a NPE. + + +For complete information on Apache Commons RNG, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Commons RNG website: + +http://commons.apache.org/proper/commons-rng/ + +----------------------------------------------------------------------------- + + Apache Commons RNG 1.0 RELEASE NOTES + +The Apache Commons RNG team is pleased to announce the release of Apache Commons RNG 1.0 + +The Apache Commons RNG project provides pure-Java implementation of pseudo-random generators. + +This is the first release of Apache Commons RNG. +Apache Commons RNG 1.0 contains the following modules: + commons-rng-client-api (requires Java 6) + commons-rng-core (requires Java 6) + commons-rng-simple (requires Java 6) + commons-rng-sampling (requires Java 6) + commons-rng-jmh (requires Java 6) + commons-rng-examples (requires Java 7) + +No changes defined in this version. + +For complete information on Apache Commons RNG, including instructions on how to submit bug reports, +patches, or suggestions for improvement, see the Apache Commons RNG website: + +http://commons.apache.org/proper/commons-rng/ + + +Have fun! +-Apache Commons RNG team \ No newline at end of file