Skip to content

Commit

Permalink
v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshoku committed Nov 27, 2022
1 parent 66ead4d commit d761155
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
## [0.5.1]

- Fix build failure with Xcode 14 and Ruby 3.1.x.

## [0.5.0]

- Support 32-bit PCG and Mersenne Twister.

```ruby
Expand All @@ -12,17 +17,22 @@ rng = Numo::Random::Generator.new(algorithm: 'mt64')
```

## [0.4.0]

- Add method for random number generation with bernoulli distribution: bernoulli, binomial, negative_binomial, and geometric.

## [0.3.0]

- Change native extension filename.
- Add methods for random number generation with poisson distributions: poisson, exponential, gamma, gumbel, and weibull.

## [0.2.0]

- Add discrete method.

### Breaking Changes

- Change to return array for all methods that fill array with random numbers in Generator class.

## [0.1.0]

- Initial release.
2 changes: 1 addition & 1 deletion lib/numo/random/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
module Numo
module Random
# The version of Numo::Random you install.
VERSION = '0.5.0'
VERSION = '0.5.1'
end
end

0 comments on commit d761155

Please sign in to comment.