Skip to content

Commit 4b47451

Browse files
committed
Auto-generated commit
1 parent e67389d commit 4b47451

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
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 (2026-01-23)
7+
## Unreleased (2026-01-25)
88

99
<section class="features">
1010

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

261261
<details>
262262

263+
- [`bcac5a8`](https://github.com/stdlib-js/stdlib/commit/bcac5a8416e8cc611010ee290899cd72177087b1) - **bench:** refactor to use string interpolation in various `assert` packages [(#9786)](https://github.com/stdlib-js/stdlib/pull/9786) _(by Anant Sharma, Athan Reines)_
263264
- [`cccf137`](https://github.com/stdlib-js/stdlib/commit/cccf1373cfe50773b96a7d2a4a538ed54987780b) - **bench:** refactor to use string interpolation in `array/pool` [(#9862)](https://github.com/stdlib-js/stdlib/pull/9862) _(by Sagar Ratna Chaudhary)_
264265
- [`c11b35c`](https://github.com/stdlib-js/stdlib/commit/c11b35c2be07283d370662abf5438b9935b49fff) - **bench:** refactor to use string interpolation in `array/base/fillednd` [(#9779)](https://github.com/stdlib-js/stdlib/pull/9779) _(by Rohit R Bhat)_
265266
- [`0472076`](https://github.com/stdlib-js/stdlib/commit/04720767c484e6277ad9411dff3dc5a116c31378) - **docs:** remove duplicated words in documentation and comments _(by Philipp Burckhardt)_
@@ -719,13 +720,14 @@ A total of 35 issues were closed in this release:
719720

720721
### Contributors
721722

722-
A total of 35 people contributed to this release. Thank you to the following contributors:
723+
A total of 36 people contributed to this release. Thank you to the following contributors:
723724

724725
- Aayush Khanna
725726
- Abhijit Raut
726727
- Aditya Sapra
727728
- Ahmed Kashkoush
728729
- Aman Singh
730+
- Anant Sharma
729731
- Anshu Kumar
730732
- Aryan kumar
731733
- Athan Reines

base/cuevery-by-right/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2525
var isArray = require( '@stdlib/assert/is-array' );
2626
var isPositiveInteger = require( '@stdlib/assert/is-positive-integer' ).isPrimitive;
2727
var filled = require( './../../../base/filled' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var cueveryByRight = require( './../lib' );
3031

@@ -89,7 +90,7 @@ function main() {
8990
for ( i = min; i <= max; i++ ) {
9091
len = pow( 10, i );
9192
f = createBenchmark( len );
92-
bench( pkg + ':len=' + len, f );
93+
bench( format( '%s:len=%d', pkg, len ), f );
9394
}
9495
}
9596

0 commit comments

Comments
 (0)