File tree 3 files changed +13
-5
lines changed
3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ rand_hc = { path = "rand_hc", version = "0.1" }
85
85
rand_xoshiro = { path = " rand_xoshiro" , version = " 0.2" }
86
86
rand_isaac = { path = " rand_isaac" , version = " 0.1" }
87
87
rand_xorshift = { path = " rand_xorshift" , version = " 0.1" }
88
- rand_distr = { path = " rand_distr" , version = " 0.1 " }
88
+ rand_distr = { path = " rand_distr" , version = " 0.2 " }
89
89
90
90
[build-dependencies ]
91
91
autocfg = " 0.1"
Original file line number Diff line number Diff line change @@ -4,5 +4,14 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/en/1.0.0/ )
5
5
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
6
6
7
- ## [ 0.1.0] - ??
8
- Initial release.
7
+ ## [ 0.2.0] - 2019-06-06
8
+ - Remove ` new ` constructors for zero-sized types
9
+ - Add Pert distribution
10
+ - Fix undefined behavior in ` Poisson `
11
+ - Make all distributions return ` Result ` s instead of panicking
12
+ - Implement ` f32 ` support for most distributions
13
+ - Rename ` UnitSphereSurface ` to ` UnitSphere `
14
+ - Implement ` UnitBall ` and ` UnitDisc `
15
+
16
+ ## [ 0.1.0] - 2019-06-06
17
+ Initial release. This is equivalent to the code in ` rand ` 0.6.5.
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " rand_distr"
3
- version = " 0.1 .0"
3
+ version = " 0.2 .0"
4
4
authors = [" The Rand Project Developers" ]
5
5
license = " MIT/Apache-2.0"
6
6
readme = " README.md"
@@ -21,7 +21,6 @@ appveyor = { repository = "rust-random/rand" }
21
21
[dependencies ]
22
22
rand = { path = " .." , version = " >=0.5, <=0.7" }
23
23
24
-
25
24
[dev-dependencies ]
26
25
rand_pcg = { version = " 0.1" , path = " ../rand_pcg" }
27
26
# Histogram implementation for testing uniformity
You can’t perform that action at this time.
0 commit comments