Skip to content

Commit 74651d9

Browse files
committed
Auto-generated commit
1 parent db29884 commit 74651d9

4 files changed

Lines changed: 37 additions & 2 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

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-04-12)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`9a51841`](https://github.com/stdlib-js/stdlib/commit/9a51841213eb13adbd6b8fe36d96c00aac9fbb17) - **bench:** refactor to use string interpolation in `stats/base` [(#11393)](https://github.com/stdlib-js/stdlib/pull/11393) _(by Karan Anand)_
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+
- Karan Anand
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.1.1">
640

741
## 0.1.1 (2026-02-08)

benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var filledarrayBy = require( '@stdlib/array-filled-by' );
2727
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2828
var pow = require( '@stdlib/math-base-special-pow' );
2929
var ndarray = require( '@stdlib/ndarray-base-ctor' );
30+
var format = require( '@stdlib/string-format' );
3031
var pkg = require( './../package.json' ).name;
3132
var dnanmeanpn = require( './../lib' );
3233

@@ -109,7 +110,7 @@ function main() {
109110
for ( i = min; i <= max; i++ ) {
110111
len = pow( 10, i );
111112
f = createBenchmark( len );
112-
bench( pkg+':len='+len, f );
113+
bench( format( '%s:len=%d', pkg, len ), f );
113114
}
114115
}
115116

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
"@stdlib/ndarray-to-array": "^0.2.2",
5454
"@stdlib/random-base-bernoulli": "^0.2.2",
5555
"@stdlib/random-base-uniform": "^0.2.3",
56+
"@stdlib/string-format": "^0.2.3",
5657
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5758
"istanbul": "^0.4.1",
5859
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)