Skip to content

Commit f06b709

Browse files
committed
Auto-generated commit
1 parent 8086ef2 commit f06b709

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-12-18)
7+
## Unreleased (2025-12-20)
88

99
<section class="features">
1010

@@ -260,6 +260,7 @@ A total of 33 issues were closed in this release:
260260

261261
<details>
262262

263+
- [`1c08d9e`](https://github.com/stdlib-js/stdlib/commit/1c08d9e6efa0af32176a2fcfbbbd4a10002cd66c) - **bench:** refactor to use string interpolation in `array/base/zeros5d` [(#9266)](https://github.com/stdlib-js/stdlib/pull/9266) _(by anee3, Athan Reines)_
263264
- [`fff219f`](https://github.com/stdlib-js/stdlib/commit/fff219fbf68d726e25e56c304bbd8b4274f0b2df) - **bench:** refactor to use string interpolation in `array/base/filled3d-by` [(#9185)](https://github.com/stdlib-js/stdlib/pull/9185) _(by Rohit R Bhat)_
264265
- [`6338030`](https://github.com/stdlib-js/stdlib/commit/63380300fa123617bf4d460483ab1e70d2611da3) - **feat:** update `array/base/assert` TypeScript declarations [(#9196)](https://github.com/stdlib-js/stdlib/pull/9196) _(by stdlib-bot)_
265266
- [`de9dec4`](https://github.com/stdlib-js/stdlib/commit/de9dec49411a9f71d800970e9324e87dca52098b) - **docs:** update namespace table of contents [(#9205)](https://github.com/stdlib-js/stdlib/pull/9205) _(by stdlib-bot)_
@@ -703,7 +704,7 @@ A total of 33 issues were closed in this release:
703704

704705
### Contributors
705706

706-
A total of 29 people contributed to this release. Thank you to the following contributors:
707+
A total of 30 people contributed to this release. Thank you to the following contributors:
707708

708709
- Aayush Khanna
709710
- Abhijit Raut
@@ -733,6 +734,7 @@ A total of 29 people contributed to this release. Thank you to the following con
733734
- Sujal charati
734735
- Ullas
735736
- Vinit Pandit
737+
- anee3
736738
- ashutoshsao
737739

738740
</section>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,8 +342,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
342342
343343
-->
344344

345-
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
346-
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
345+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
346+
[chat-url]: https://stdlib.zulipchat.com
347347

348348
[stdlib]: https://github.com/stdlib-js/stdlib
349349

base/zeros5d/benchmark/benchmark.size.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var floor = require( '@stdlib/math/base/special/floor' );
26+
var format = require( '@stdlib/string/format' );
2627
var isArrayArray = require( '@stdlib/assert/is-array-array' );
2728
var pkg = require( './../package.json' ).name;
2829
var zeros5d = require( './../lib' );
@@ -88,7 +89,7 @@ function main() {
8889
N = floor( pow( pow( 10, i ), 1.0/5.0 ) );
8990

9091
f = createBenchmark( N );
91-
bench( pkg+'::equidimensional:size='+(N*N*N*N*N), f );
92+
bench( format( '%s::equidimensional:size=%d', pkg, N*N*N*N*N ), f );
9293
}
9394
}
9495

0 commit comments

Comments
 (0)