Skip to content

Commit a684e47

Browse files
committed
Auto-generated commit
1 parent 8fd97dd commit a684e47

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

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-04-19)
7+
## Unreleased (2026-04-21)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`5aadc76`](https://github.com/stdlib-js/stdlib/commit/5aadc76d03d8e3c511de2f14131be73dfe118af9) - **bench:** refactor to use string interpolation in `ndarray` [(#11445)](https://github.com/stdlib-js/stdlib/pull/11445) _(by Karan Anand)_
1516
- [`5e89f8b`](https://github.com/stdlib-js/stdlib/commit/5e89f8b25d48b08a844cbb05f943de3c3121f0d0) - **docs:** improve doctests for ndarray instances in `ndaray/iter/stacks` [(#11539)](https://github.com/stdlib-js/stdlib/pull/11539) _(by Uday Kakade, Athan Reines)_
1617

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

2526
### Contributors
2627

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

2930
- Athan Reines
31+
- Karan Anand
3032
- Uday Kakade
3133

3234
</section>

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 isIteratorLike = require( '@stdlib/assert-is-iterator-like' );
2525
var isndarrayLike = require( '@stdlib/assert-is-ndarray-like' );
2626
var array = require( '@stdlib/ndarray-array' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var nditerStacks = require( './../lib' );
2930

@@ -52,7 +53,7 @@ bench( pkg, function benchmark( b ) {
5253
b.end();
5354
});
5455

55-
bench( pkg+'::iteration', function benchmark( b ) {
56+
bench( format( '%s::iteration', pkg ), function benchmark( b ) {
5657
var xbuf;
5758
var iter;
5859
var x;

0 commit comments

Comments
 (0)