Skip to content

Commit cbc221d

Browse files
committed
Auto-generated commit
1 parent 77c75c7 commit cbc221d

File tree

4 files changed

+38
-2
lines changed

4 files changed

+38
-2
lines changed

.github/.keepalive

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

CHANGELOG.md

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

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-04-14)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`56bc531`](https://github.com/stdlib-js/stdlib/commit/56bc5310298aec8f6eca5ca07ccff333c4792a40) - **bench:** refactor to use string interpolation in `@stdlib/array` [(#11412)](https:-/github.com/stdlib-js/stdlib/pull/11412) _(by Karan Anand, Athan Reines)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 2 people contributed to this release. Thank you to the following contributors:
28+
29+
- Athan Reines
30+
- Karan Anand
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.1.1">
641

742
## 0.1.1 (2026-02-08)

benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ var floor = require( '@stdlib/math-base-special-floor' );
3030
var filled5dBy = require( '@stdlib/array-base-filled5d-by' );
3131
var zeros5d = require( '@stdlib/array-base-zeros5d' );
3232
var numel = require( '@stdlib/ndarray-base-numel' );
33+
var format = require( '@stdlib/string-format' );
3334
var pkg = require( './../package.json' ).name;
3435
var mskunary5d = require( './../lib' );
3536

@@ -121,7 +122,7 @@ function main() {
121122
N = floor( pow( pow( 10, i ), 1.0/5.0 ) );
122123
sh = [ N, N, N, N, N ];
123124
f = createBenchmark( sh );
124-
bench( pkg+'::equidimensional:size='+numel( sh ), f );
125+
bench( format( '%s::equidimensional:size=%d', pkg, numel( sh ) ), f );
125126
}
126127
}
127128

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"@stdlib/random-base-bernoulli": "^0.2.2",
5252
"@stdlib/random-base-discrete-uniform": "^0.2.2",
5353
"@stdlib/random-base-uniform": "^0.2.3",
54+
"@stdlib/string-format": "^0.2.3",
5455
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5556
"istanbul": "^0.4.1",
5657
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)