Skip to content

Commit cd7d8f4

Browse files
committed
Auto-generated commit
1 parent 03ab90d commit cd7d8f4

File tree

4 files changed

+41
-7
lines changed

4 files changed

+41
-7
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,40 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-02-25)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`0ca797b`](https://github.com/stdlib-js/stdlib/commit/0ca797b5558b96111256a7446eafe101761b240b) - **bench:** use float literals for `uniform` range arguments _(by Philipp Burckhardt)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Philipp Burckhardt
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.3">
640

741
## 0.2.3 (2026-02-08)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
243243
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-binomial-cdf.svg
244244
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-binomial-cdf
245245

246-
[test-image]: https://github.com/stdlib-js/stats-base-dists-binomial-cdf/actions/workflows/test.yml/badge.svg?branch=v0.2.3
247-
[test-url]: https://github.com/stdlib-js/stats-base-dists-binomial-cdf/actions/workflows/test.yml?query=branch:v0.2.3
246+
[test-image]: https://github.com/stdlib-js/stats-base-dists-binomial-cdf/actions/workflows/test.yml/badge.svg?branch=main
247+
[test-url]: https://github.com/stdlib-js/stats-base-dists-binomial-cdf/actions/workflows/test.yml?query=branch:main
248248

249249
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-binomial-cdf/main.svg
250250
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-binomial-cdf?branch=main

benchmark/benchmark.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ bench( pkg, function benchmark( b ) {
4343
};
4444
x = uniform( 100, 0.0, 100.0, opts );
4545
n = discreteUniform( 100, 1, 100, opts );
46-
p = uniform( 100, 0, 1, opts );
46+
p = uniform( 100, 0.0, 1.0, opts );
4747

4848
b.tic();
4949
for ( i = 0; i < b.iterations; i++ ) {

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,18 @@
4040
"@stdlib/constants-float64-pinf": "^0.2.3",
4141
"@stdlib/math-base-assert-is-nan": "^0.2.3",
4242
"@stdlib/math-base-assert-is-nonnegative-integer": "^0.2.2",
43-
"@stdlib/math-base-special-betainc": "^0.2.2",
43+
"@stdlib/math-base-special-betainc": "^0.2.3",
4444
"@stdlib/math-base-special-floor": "^0.2.4",
4545
"@stdlib/utils-constant-function": "^0.2.3",
4646
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3"
4747
},
4848
"devDependencies": {
49-
"@stdlib/console-log-each-map": "^0.1.0",
49+
"@stdlib/console-log-each-map": "^0.1.1",
5050
"@stdlib/constants-float64-eps": "^0.2.3",
5151
"@stdlib/constants-float64-ninf": "^0.2.3",
5252
"@stdlib/math-base-special-abs": "^0.2.3",
53-
"@stdlib/random-array-discrete-uniform": "^0.2.1",
54-
"@stdlib/random-array-uniform": "^0.2.1",
53+
"@stdlib/random-array-discrete-uniform": "^0.2.2",
54+
"@stdlib/random-array-uniform": "^0.2.2",
5555
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5656
"istanbul": "^0.4.1",
5757
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)