diff options
| author | mattip <matti.picus@gmail.com> | 2019-04-12 10:27:33 +0300 |
|---|---|---|
| committer | mattip <matti.picus@gmail.com> | 2019-05-20 18:45:27 +0300 |
| commit | 9578dcfbe744854312690ea79063e50d67fc88a2 (patch) | |
| tree | c81fd1e43aa3a2a5124aae8575dcb427746b8ef9 /doc/source/reference/random/change-log.rst | |
| parent | c53b2eb729bae1f248a2654dfcfa4a3dd3e2902b (diff) | |
| download | numpy-9578dcfbe744854312690ea79063e50d67fc88a2.tar.gz | |
BUG: __dealloc__ can be called without __init__ in some error modes
skip doctests that require scipy
move original mtrand module to _mtrand
adjust documentation for namespace change
Diffstat (limited to 'doc/source/reference/random/change-log.rst')
| -rw-r--r-- | doc/source/reference/random/change-log.rst | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/doc/source/reference/random/change-log.rst b/doc/source/reference/random/change-log.rst new file mode 100644 index 000000000..af3c266ef --- /dev/null +++ b/doc/source/reference/random/change-log.rst @@ -0,0 +1,39 @@ +Change Log for the original bashtage/randomgen repo +--------------------------------------------------- +v1.16.1 +======= +- Synchronized with upstream changes. +- Fixed a bug in gamma generation if the shape parameters is 0.0. + +v1.16.0 +======= +- Fixed a bug that affected ``randomgen.dsfmt.DSFMT`` when calling + ``~randomgen.dsfmt.DSFMT.jump`` or ``randomgen.dsfmt.DSFMT.seed`` + that failed to reset the buffer. This resulted in upto 381 values from the + previous state being used before the buffer was refilled at the new state. +- Fixed bugs in ``randomgen.xoshiro512starstar.Xoshiro512StarStar`` + and ``randomgen.xorshift1024.Xorshift1024`` where the fallback + entropy initialization used too few bytes. This bug is unlikely to be + encountered since this path is only encountered if the system random + number generator fails. +- Synchronized with upstream changes. + +v1.15.1 +======= +- Added Xoshiro256** and Xoshiro512**, the preferred generators of this class. +- Fixed bug in `jump` method of Random123 generators which did nto specify a default value. +- Added support for generating bounded uniform integers using Lemire's method. +- Synchronized with upstream changes, which requires moving the minimum supported NumPy to 1.13. + +v1.15 +===== +- Synced empty choice changes +- Synced upstream docstring changes +- Synced upstream changes in permutation +- Synced upstream doc fixes +- Added absolute_import to avoid import noise on Python 2.7 +- Add legacy generator which allows NumPy replication +- Improve type handling of integers +- Switch to array-fillers for 0 parameter distribution to improve performance +- Small changes to build on manylinux +- Build wheels using multibuild |
