Skip to content

Commit 6762293

Browse files
committed
update changelog
1 parent 14e0dac commit 6762293

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [dev] (MM/DD/YYYY)
88

9+
### Added
10+
* Added `mkl_random.interfaces` with `mkl_random.interfaces.numpy_random` interface, which aliases `mkl_random` functionality to more strictly adhere to NumPy's API (i.e., drops arguments and functions which are not part of standard NumPy) [gh-92](https://github.com/IntelPython/mkl_random/pull/92)
11+
912
### Removed
1013
* Dropped support for Python 3.9 [gh-81](https://github.com/IntelPython/mkl_random/pull/81)
1114

15+
### Deprecated
16+
* Deprecated `mkl_random.RandomState` in favor of `mkl_random.MKLRandomState`, delegating `mkl_random.RandomState` to the `mkl_random.interfaces.numpy_random` interface [gh-92](https://github.com/IntelPython/mkl_random/pull/92)
17+
1218
## [1.3.1] (12/02/2025)
1319

1420
### Added

mkl_random/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,6 @@
9292
test = PytestTester(__name__)
9393
del PytestTester
9494

95-
import mkl_random.interfaces
96-
9795
__all__ = [
9896
"MKLRandomState",
9997
"RandomState",

mkl_random/interfaces/numpy_random.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,9 @@
7272
dirichlet,
7373
shuffle,
7474
permutation,
75+
ranf,
76+
sample,
77+
random,
7578
)
7679

7780
__all__ = [
@@ -123,4 +126,7 @@
123126
"dirichlet",
124127
"shuffle",
125128
"permutation",
129+
"ranf",
130+
"sample",
131+
"random",
126132
]

0 commit comments

Comments
 (0)