Skip to content

Commit 2b8d437

Browse files
committed
Auto-generated commit
1 parent 6ddc453 commit 2b8d437

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

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

99
<section class="features">
1010

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

357357
<details>
358358

359+
- [`4ea59e9`](https://github.com/stdlib-js/stdlib/commit/4ea59e9fee040c70ba692fc12c62a930f9f82925) - **bench:** refactor to use string interpolation in `utils/some` [(#10866)](https://github.com/stdlib-js/stdlib/pull/10866) _(by Sumithraju)_
359360
- [`ae3b935`](https://github.com/stdlib-js/stdlib/commit/ae3b9357fea476785d737e028d4f0242ade846ec) - **chore:** fix JavaScript lint errors (issue #10501) [(#10502)](https://github.com/stdlib-js/stdlib/pull/10502) _(by Partha Das)_
360361
- [`086d2d6`](https://github.com/stdlib-js/stdlib/commit/086d2d61999c12b8ec98b96dbbf9677b835181ea) - **chore:** fix JavaScript lint errors [(#10557)](https://github.com/stdlib-js/stdlib/pull/10557) _(by Partha Das, Athan Reines)_
361362
- [`3422651`](https://github.com/stdlib-js/stdlib/commit/3422651a3ec2e6717f25d82020a62f00dbe2aa78) - **docs:** add missing section closing comments in READMEs _(by Philipp Burckhardt)_
@@ -553,7 +554,7 @@ A total of 36 issues were closed in this release:
553554

554555
### Contributors
555556

556-
A total of 33 people contributed to this release. Thank you to the following contributors:
557+
A total of 34 people contributed to this release. Thank you to the following contributors:
557558

558559
- 0x00000F
559560
- Athan Reines
@@ -579,6 +580,7 @@ A total of 33 people contributed to this release. Thank you to the following con
579580
- Shubham
580581
- Sibi
581582
- Srinivas Batthula
583+
- Sumithraju
582584
- Suyash Pathak
583585
- Tyson Cung
584586
- Uday Kakade

some/benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222

2323
var bench = require( '@stdlib/bench' );
2424
var isBoolean = require( '@stdlib/assert/is-boolean' ).isPrimitive;
25+
var format = require( '@stdlib/string/format' );
2526
var pkg = require( './../package.json' ).name;
2627
var some = require( './../lib' );
2728

@@ -49,7 +50,7 @@ bench( pkg, function benchmark( b ) {
4950
b.end();
5051
});
5152

52-
bench( pkg+'::loop', function benchmark( b ) {
53+
bench( format( '%s::loop', pkg ), function benchmark( b ) {
5354
var total;
5455
var count;
5556
var bool;

0 commit comments

Comments
 (0)