Skip to content

Commit 5ee4348

Browse files
committed
Auto-generated commit
1 parent 0f5ded7 commit 5ee4348

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

Lines changed: 5 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-03-29)
7+
## Unreleased (2026-04-14)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

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)_
1516
- [`157ea4e`](https://github.com/stdlib-js/stdlib/commit/157ea4e1fe500feee3e8252c9e03162da1b53db7) - **chore:** use relative paths _(by Philipp Burckhardt)_
1617

1718
</details>
@@ -24,8 +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 3 people contributed to this release. Thank you to the following contributors:
2829

30+
- Athan Reines
31+
- Karan Anand
2932
- Philipp Burckhardt
3033

3134
</section>

benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ var add = require( '@stdlib/number-float64-base-add' );
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 mskbinary5d = require( './../lib' );
3536

@@ -123,7 +124,7 @@ function main() {
123124
N = floor( pow( pow( 10, i ), 1.0/5.0 ) );
124125
sh = [ N, N, N, N, N ];
125126
f = createBenchmark( sh );
126-
bench( pkg+'::equidimensional:size='+numel( sh ), f );
127+
bench( format( '%s::equidimensional:size=%d', pkg, numel( sh ) ), f );
127128
}
128129
}
129130

package.json

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

0 commit comments

Comments
 (0)