Skip to content

Commit cac0578

Browse files
committed
Auto-generated commit
1 parent e0e6609 commit cac0578

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

CHANGELOG.md

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

7-
## Unreleased (2026-03-02)
7+
## Unreleased (2026-03-03)
88

99
<section class="features">
1010

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

261261
<details>
262262

263+
- [`71a3394`](https://github.com/stdlib-js/stdlib/commit/71a339452ce742461f52af49a9767fdacfe87ee7) - **bench:** refactor to use string interpolation in `array/base/first` [(#10647)](https://github.com/stdlib-js/stdlib/pull/10647) _(by Rohit R Bhat)_
263264
- [`3b764ec`](https://github.com/stdlib-js/stdlib/commit/3b764ec4b17ebce14902ac68a42bc5df62c3aef5) - **docs:** remove stray console.log _(by Athan Reines)_
264265
- [`f101dfa`](https://github.com/stdlib-js/stdlib/commit/f101dfa3d4cdd280ab58690114862ab15e8993ef) - **style:** fix line wrapping and remove trailing whitespace _(by Athan Reines)_
265266
- [`040efaf`](https://github.com/stdlib-js/stdlib/commit/040efaff1efa5576e2625694c19e3a5644c92f5c) - **bench:** refactor to use string interpolation in `array/typed-real` [(#10036)](https://github.com/stdlib-js/stdlib/pull/10036) _(by Aman Singh)_

base/first/benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
2525
var pow = require( '@stdlib/math/base/special/pow' );
2626
var filledBy = require( './../../../filled-by' );
2727
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var first = require( './../lib' );
3031

@@ -95,7 +96,7 @@ function main() {
9596
len = pow( 10, i );
9697

9798
f = createBenchmark( len );
98-
bench( pkg+':len='+len, f );
99+
bench( format( '%s:len=%d', pkg, len ), f );
99100
}
100101
}
101102

0 commit comments

Comments
 (0)