Skip to content

Commit 9633d35

Browse files
committed
DOC: Update change log for 1.16.4
Update changelog
1 parent 20b86ad commit 9633d35

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

doc/source/change-log.rst

+19-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,26 @@
11
Change Log
22
----------
33

4-
Since v1.16.2
5-
=============
6-
- Added broadcasting to multinomial (see
4+
v1.16.4
5+
=======
6+
- Add a fast path for broadcasting :func:`~randomgen.generator.RandomGenerator.randint`
7+
when using ``uint64`` or ``int64``.
8+
- Refactor PCG64 so that it does not rely on Cython conditional compilation.
9+
- Add :func:`~randomgen.generator.RandomGenerator.brng` to access the basic RNG.
10+
- Allow multidimensional arrays in :func:`~randomgen.generator.RandomGenerator.choice`.
11+
- Speed-up :func:`~randomgen.generator.RandomGenerator.choice` when not replacing.
12+
The gains can be very large (1000x or more) when the input array is large but
13+
the sample size is small.
14+
- Add parameter checks in :func:`~randomgen.generator.RandomGenerator.multinomial`.
15+
- Fix an edge-case bug in :func:`~randomgen.generator.RandomGenerator.zipf`.
16+
- Allow 0 for sample in :func:`~randomgen.generator.RandomGenerator.hypergeometric`.
17+
- Add broadcasting to :func:`~randomgen.generator.RandomGenerator.multinomial` (see
718
`NumPy issue 9710 <https://github.com/numpy/numpy/pull/9710>`_)
819

20+
v1.16.3
21+
=======
22+
- Release fixing Python 2.7 issues
23+
924
v1.16.2
1025
=======
1126
- Updated Xoroshiro120 to use AUthor's latest parameterization
@@ -14,7 +29,7 @@ v1.16.2
1429

1530
- ``random_raw``, which have been moved to the individual basic RNGs
1631
- ``random_uintegers``, which can be replaced with
17-
:func:`~randomgen..generator.RandomGenerator.randint`.
32+
:func:`~randomgen.generator.RandomGenerator.randint`.
1833

1934
- Added :class:`~randomgen.mtrand.RandomState` as a clone of NumPy's
2035
RandomState.

0 commit comments

Comments
 (0)