Releases: cicirello/rho-mu
Releases · cicirello/rho-mu
rho-mu, v2.0.0
[2.0.0] - 2022-03-21
Breaking Changes
Contains breaking changes, including increasing minimum supported Java version to Java 17.
Changed
- Minimum supported Java version is now Java 17.
- Refactored all classes in package org.cicirello.math.rand to use Java 17's new RandomGenerator interface.
- Migrated test cases to JUnit Jupiter 5.8.2.
rho mu, v1.2.0
[1.2.0] - 2022-02-11
Added
- Statistics.stdev(int[]) and Statistics.stdev(double[]) methods for sample standard deviation.
CI/CD
- Added automated commenting of test coverage percentages to CI/CD workflow.
rho mu, v1.1.0
[1.1.0] - 2021-9-22
Added
- Gaussian random number generators, specifically integrated the implementations
from the Chips-n-Salsa library.
rho mu, v1.0.0
[1.0.0] - 2021-09-22
Added
- This library provides the Java module org.cicirello.rho_mu, which includes the
following packages in this initial release, all of which originated with the
JavaPermutationTools library:- org.cicirello.math: Math functions needed by other functionality.
- org.cicirello.math.la: Linear algebra related.
- org.cicirello.math.rand: Efficient random sampling of single, pair, and triples of array
indexes, as well as other randomization related functionality such as distributions other
than random. - org.cicirello.math.stats: Statistics related functionality.