Skip to content

Commit 30a5b10

Browse files
committed
Auto-generated commit
1 parent b06b8e7 commit 30a5b10

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-06)
7+
## Unreleased (2026-01-09)
88

99
<section class="features">
1010

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

261261
<details>
262262

263+
- [`bfab153`](https://github.com/stdlib-js/stdlib/commit/bfab1532d8a54a05baac781a2913db458a1e8570) - **bench:** refactor to use string interpolation in `array/base/bifurcate-values-by` [(#9607)](https://github.com/stdlib-js/stdlib/pull/9607) _(by Bhargav Dabhade)_
263264
- [`ff76be4`](https://github.com/stdlib-js/stdlib/commit/ff76be4bd7eb9ced1fc74441b9766d1e5e6d6d31) - **bench:** use string interpolation for benchmark names [(#9517)](https://github.com/stdlib-js/stdlib/pull/9517) _(by KovidhRaj)_
264265
- [`b0c05c9`](https://github.com/stdlib-js/stdlib/commit/b0c05c934c6654a95eee523ed88fb34e12fd552b) - **chore:** fix JavaScript lint errors [(#9546)](https://github.com/stdlib-js/stdlib/pull/9546) _(by DivitJain26)_
265266
- [`d866858`](https://github.com/stdlib-js/stdlib/commit/d866858cf3082f7692f1c51883490c1da36d1879) - **bench:** refactor to use string interpolation in `array/uint8` [(#9518)](https://github.com/stdlib-js/stdlib/pull/9518) _(by Shubham)_
@@ -711,7 +712,7 @@ A total of 34 issues were closed in this release:
711712

712713
### Contributors
713714

714-
A total of 32 people contributed to this release. Thank you to the following contributors:
715+
A total of 33 people contributed to this release. Thank you to the following contributors:
715716

716717
- Aayush Khanna
717718
- Abhijit Raut
@@ -721,6 +722,7 @@ A total of 32 people contributed to this release. Thank you to the following con
721722
- Anshu Kumar
722723
- Aryan kumar
723724
- Athan Reines
725+
- Bhargav Dabhade
724726
- DivitJain26
725727
- Divyanshu
726728
- Geo Daoyu

base/bifurcate-values-by/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var isArrayArray = require( '@stdlib/assert/is-array-array' );
2626
var zeroTo = require( './../../../base/zero-to' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var bifurcateValuesBy = require( './../lib' );
2930

@@ -102,7 +103,7 @@ function main() {
102103
len = pow( 10, i );
103104

104105
f = createBenchmark( len );
105-
bench( pkg+':len='+len, f );
106+
bench( format( '%s:len=%d', pkg, len ), f );
106107
}
107108
}
108109

0 commit comments

Comments
 (0)