Skip to content

Commit 5f1d33d

Browse files
committed
Auto-generated commit
1 parent 5823e5e commit 5f1d33d

File tree

4 files changed

+37
-2
lines changed

4 files changed

+37
-2
lines changed

.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-17)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`67c0a20`](https://github.com/stdlib-js/stdlib/commit/67c0a2044e515ea6733765a48be54f09ea749d8f) - **bench:** refactor to use string interpolation in `@stdlib/assert` [(#11398)](https:-/github.com/stdlib-js/stdlib/pull/11398) _(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.2.3">
640

741
## 0.2.3 (2026-02-08)

benchmark/benchmark.size.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ var floor = require( '@stdlib/math-base-special-floor' );
2828
var ndarray = require( '@stdlib/ndarray-ctor' );
2929
var Float64Array = require( '@stdlib/array-float64' );
3030
var isOdd = require( '@stdlib/math-base-assert-is-odd' );
31+
var format = require( '@stdlib/string-format' );
3132
var pkg = require( './../package.json' ).name;
3233
var isCentrosymmetricMatrix = require( './../lib' );
3334

@@ -115,7 +116,7 @@ function main() {
115116
sz = min * pow( 2, i );
116117
N = sqrt( sz );
117118
f = createBenchmark( isCentrosymmetricMatrix, sz, N );
118-
bench( pkg+':size='+sz+',dims='+N+'x'+N, f );
119+
bench( format( '%s:size=%d,dims=%dx%d', pkg, sz, N, N ), f );
119120
}
120121
}
121122

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@
4848
"@stdlib/math-base-special-pow": "^0.3.1",
4949
"@stdlib/math-base-special-sqrt": "^0.2.3",
5050
"@stdlib/ndarray-ctor": "^0.3.1",
51+
"@stdlib/string-format": "^0.2.3",
5152
"@stdlib/utils-noop": "^0.2.3",
5253
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5354
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)