Skip to content

Commit

Permalink
Bump version for Ruby 3.1 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
phillbaker committed Apr 3, 2023
1 parent f90b0ac commit 48a9312
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
31 changes: 31 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lib/rubystats/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Rubystats
VERSION = '0.3.0'
VERSION = '0.4.0'
end

0 comments on commit 48a9312

Please sign in to comment.