Skip to content

Commit 2286486

Browse files
committed
Auto-generated commit
1 parent 7e7eb39 commit 2286486

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-04-13)
7+
## Unreleased (2026-04-19)
88

99
<section class="features">
1010

@@ -168,6 +168,7 @@ A total of 10 issues were closed in this release:
168168

169169
<details>
170170

171+
- [`49fc241`](https://github.com/stdlib-js/stdlib/commit/49fc2415618fdc746ce1bb16654e5d291fb6db85) - **docs:** fix `options.seed` duplicate and add missing `options.copy` tags in `random/iter` [(#11558)](https://github.com/stdlib-js/stdlib/pull/11558) _(by Philipp Burckhardt)_
171172
- [`fddbb92`](https://github.com/stdlib-js/stdlib/commit/fddbb92925b8417c846356548ace38c51674a318) - **bench:** refactor to use string interpolation in `@stdlib/random/iter` [(#11424)](https://github.com/stdlib-js/stdlib/pull/11424) _(by Karan Anand)_
172173
- [`b808ef2`](https://github.com/stdlib-js/stdlib/commit/b808ef25c4897fc1aa8dc32fde278de851bf3430) - **bench:** refactor to use string interpolation in `@stdlib/random/strided` [(#11426)](https://github.com/stdlib-js/stdlib/pull/11426) _(by Karan Anand)_
173174
- [`3a9811b`](https://github.com/stdlib-js/stdlib/commit/3a9811bb771976b46a1d19009a4ea81ad03a2450) - **bench:** refactor to use string interpolation in `@stdlib/random/strided` [(#11425)](https://github.com/stdlib-js/stdlib/pull/11425) _(by Karan Anand)_

iter/bernoulli/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ var format = require( '@stdlib/string/format' );
4343
*
4444
* @param {Probability} p - success probability
4545
* @param {Options} [options] - function options
46-
* @param {*} [options.seed] - pseudorandom number generator seed
4746
* @param {PRNG} [options.prng] - pseudorandom number generator which generates uniformly distributed pseudorandom numbers
4847
* @param {PRNGSeedMT19937} [options.seed] - pseudorandom number generator seed
4948
* @param {PRNGStateMT19937} [options.state] - pseudorandom number generator state

iter/betaprime/lib/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ var format = require( '@stdlib/string/format' );
4747
* @param {PRNG} [options.prng] - pseudorandom number generator which generates uniformly distributed pseudorandom numbers
4848
* @param {PRNGSeedMT19937} [options.seed] - pseudorandom number generator seed
4949
* @param {PRNGStateMT19937} [options.state] - pseudorandom number generator state
50+
* @param {boolean} [options.copy=true] - boolean indicating whether to copy a provided pseudorandom number generator state
5051
* @param {NonNegativeInteger} [options.iter] - number of iterations
5152
* @throws {TypeError} `alpha` must be a positive number
5253
* @throws {TypeError} `beta` must be a positive number

iter/binomial/lib/main.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ var format = require( '@stdlib/string/format' );
4848
* @param {PRNG} [options.prng] - pseudorandom number generator which generates uniformly distributed pseudorandom numbers
4949
* @param {PRNGSeedMT19937} [options.seed] - pseudorandom number generator seed
5050
* @param {PRNGStateMT19937} [options.state] - pseudorandom number generator state
51+
* @param {boolean} [options.copy=true] - boolean indicating whether to copy a provided pseudorandom number generator state
5152
* @param {NonNegativeInteger} [options.iter] - number of iterations
5253
* @throws {TypeError} first argument must be a positive integer
5354
* @throws {TypeError} second argument must be a probability

0 commit comments

Comments
 (0)