From 48a93126eb3f1bc3e290ae5811796a9f2d031214 Mon Sep 17 00:00:00 2001 From: Phillip Baker Date: Sun, 2 Apr 2023 20:34:56 -0400 Subject: [PATCH] Bump version for Ruby 3.1 fix --- History.txt | 31 +++++++++++++++++++++++++++++++ lib/rubystats/version.rb | 2 +- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/History.txt b/History.txt index 24d9b1d..8f18f95 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,34 @@ +=== 0.3.0 / 2023-04-03 +* Add support for ruby 3.1 + +=== 0.3.0 / 2017-12-01 +* Uniform distribution +* added gamma distribution (mean, variance, pdf, cdf, rng) +* implemented multivariate normal distribution (mean,pdf,rng) +* cleaned up the code for the binomial distribution and created a module for discrete probability distributions +* implementation of poisson distribution (mean,variance,pdf,cdf,icdf,rng) +* fixed rng in Binomial and Poisson and added tests for their rng functions +* rewrote factorial function because of error with too many stack levels +* added student t distribution (mean, variance, pdf, rng) +* added weibull implementation (mean,pdf,cdf,icdf,rng) +* fix to prevent integer calculations when distributions are initialized (#10) +* Update beta_distribution.rb +* Added rng for beta distribution +* Corrected PDF calculation in README.rdoc + +=== 0.2.6 / 2017-07-23 +* Preserve the old API by setting constants manually + +=== 0.2.5 / 2016-07-08 +* refactoring to reduce warnings +* reactivate and fix test for normal distribution +* Use attr_reader to avoid initialization warnings. +* add test for normal distributed random numbers + +=== 0.2.4 / 2016-01-31 +* raise error when normal initialised with bad sigma +* changes for CI tests + === 0.2.3 / 2008-07-06 * Fixing bug #21100 - problem with Beta distribution calculations when p and q values are small. * Minor code cleanup for readability in a few places. diff --git a/lib/rubystats/version.rb b/lib/rubystats/version.rb index 8b06539..2b73892 100644 --- a/lib/rubystats/version.rb +++ b/lib/rubystats/version.rb @@ -1,3 +1,3 @@ module Rubystats - VERSION = '0.3.0' + VERSION = '0.4.0' end