Skip to content

Commit f1c1d1e

Browse files
committed
Auto-generated commit
1 parent cd7d8f4 commit f1c1d1e

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

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

7-
## Unreleased (2026-02-25)
7+
## Unreleased (2026-03-04)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`675c404`](https://github.com/stdlib-js/stdlib/commit/675c404341e210a6ff4d37477bbc3f79e927fd8d) - **bench:** refactor to use string interpolation in `stats/base/dists/binomial` [(#10176)](https://github.com/stdlib-js/stdlib/pull/10176) _(by Vishal Gaikwad)_
1516
- [`0ca797b`](https://github.com/stdlib-js/stdlib/commit/0ca797b5558b96111256a7446eafe101761b240b) - **bench:** use float literals for `uniform` range arguments _(by Philipp Burckhardt)_
1617

1718
</details>
@@ -24,9 +25,10 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

2930
- Philipp Burckhardt
31+
- Vishal Gaikwad
3032

3133
</section>
3234

benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench-harness' );
2424
var uniform = require( '@stdlib/random-array-uniform' );
2525
var discreteUniform = require( '@stdlib/random-array-discrete-uniform' );
2626
var isnan = require( '@stdlib/math-base-assert-is-nan' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var cdf = require( './../lib' );
2930

@@ -60,7 +61,7 @@ bench( pkg, function benchmark( b ) {
6061
b.end();
6162
});
6263

63-
bench( pkg+':factory', function benchmark( b ) {
64+
bench( format( '%s::factory', pkg ), function benchmark( b ) {
6465
var mycdf;
6566
var opts;
6667
var n;

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"@stdlib/math-base-special-abs": "^0.2.3",
5353
"@stdlib/random-array-discrete-uniform": "^0.2.2",
5454
"@stdlib/random-array-uniform": "^0.2.2",
55+
"@stdlib/string-format": "^0.2.3",
5556
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5657
"istanbul": "^0.4.1",
5758
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)