Skip to content

Commit ced3d52

Browse files
committed
Auto-generated commit
1 parent d9b522a commit ced3d52

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,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-01-18)
7+
## Unreleased (2026-01-25)
88

99
<section class="features">
1010

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

158158
<details>
159159

160+
- [`6e21629`](https://github.com/stdlib-js/stdlib/commit/6e21629c4064ea16b800fa43138c6c70debc0039) - **bench:** refactor to use string interpolation in `assert/is-almost-equal-float32array` [(#9877)](https://github.com/stdlib-js/stdlib/pull/9877) _(by Sagar Ratna Chaudhary)_
160161
- [`2828866`](https://github.com/stdlib-js/stdlib/commit/282886626527e6ecead4302731138ba11c04998f) - **fix:** add missing exports comment directive _(by Philipp Burckhardt)_
161162
- [`86031ac`](https://github.com/stdlib-js/stdlib/commit/86031ace3c539a7bc339082990d9896abde895d4) - **chore:** fix JavaScript lint errors [(#9801)](https://github.com/stdlib-js/stdlib/pull/9801) _(by Suyash Pathak)_
162163
- [`be2d13e`](https://github.com/stdlib-js/stdlib/commit/be2d13ea3b0b13e51fbc9a51a0788b03d1eb3618) - **chore:** fix JavaScript lint errors [(#9796)](https://github.com/stdlib-js/stdlib/pull/9796) _(by 가은 정)_
@@ -368,7 +369,7 @@ A total of 34 issues were closed in this release:
368369

369370
### Contributors
370371

371-
A total of 33 people contributed to this release. Thank you to the following contributors:
372+
A total of 34 people contributed to this release. Thank you to the following contributors:
372373

373374
- Almunazza
374375
- Aman Singh
@@ -391,6 +392,7 @@ A total of 33 people contributed to this release. Thank you to the following con
391392
- Prajjwal Bajpai
392393
- Rohit R Bhat
393394
- RudrakshRaina07
395+
- Sagar Ratna Chaudhary
394396
- Saptarshi Mula
395397
- Seth-Banker
396398
- Shabareesh Shetty

is-almost-equal-float32array/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var isBoolean = require( './../../is-boolean' ).isPrimitive;
2525
var pow = require( '@stdlib/math/base/special/pow' );
2626
var zeroTo = require( '@stdlib/array/base/zero-to' );
2727
var Float32Array = require( '@stdlib/array/float32' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var isAlmostEqualFloat32Array = require( './../lib' );
3031

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

0 commit comments

Comments
 (0)