Skip to content

Commit f4a4573

Browse files
committed
Auto-generated commit
1 parent fb8e8ce commit f4a4573

4 files changed

Lines changed: 14 additions & 6 deletions

File tree

.github/.keepalive

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

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ package.json.copy
2525
###############
2626
build/
2727
downloads/
28+
plans/
2829
reports/
2930
tmp/
3031

@@ -175,6 +176,10 @@ acs-*.bib
175176
*.ind
176177
*.ist
177178

179+
# Git #
180+
#######
181+
.worktrees
182+
178183
# Visual Studio #
179184
#################
180185
.vscode/

CHANGELOG.md

Lines changed: 5 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-26)
7+
## Unreleased (2026-04-27)
88

99
<section class="issues">
1010

@@ -24,6 +24,7 @@ This release closes the following issue:
2424

2525
<details>
2626

27+
- [`19216fd`](https://github.com/stdlib-js/stdlib/commit/19216fd118234a4dd38792e9e1d8f982617a5795) - **bench:** refactor to use string interpolation in `utils` [(#11409)](https://github.com/stdlib-js/stdlib/pull/11409) _(by Karan Anand, Athan Reines)_
2728
- [`e5b8da9`](https://github.com/stdlib-js/stdlib/commit/e5b8da9902dce751fc23b913afd2a153a5a57c92) - **chore:** resolve JavaScript lint errors in `utils/copy` [(#11083)](https://github.com/stdlib-js/stdlib/pull/11083) _(by Agentic-Worker)_
2829

2930
</details>
@@ -36,9 +37,11 @@ This release closes the following issue:
3637

3738
### Contributors
3839

39-
A total of 1 person contributed to this release. Thank you to this contributor:
40+
A total of 3 people contributed to this release. Thank you to the following contributors:
4041

4142
- Agentic-Worker
43+
- Athan Reines
44+
- Karan Anand
4245

4346
</section>
4447

benchmark/benchmark.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,14 @@ var Int32Array = require( '@stdlib/array-int32' );
3131
var Uint32Array = require( '@stdlib/array-uint32' );
3232
var Float32Array = require( '@stdlib/array-float32' );
3333
var Float64Array = require( '@stdlib/array-float64' );
34+
var format = require( '@stdlib/string-format' );
3435
var pkg = require( './../package.json' ).name;
3536
var copy = require( './../lib' );
3637

3738

3839
// MAIN //
3940

40-
bench( pkg+':level=+infinity', function benchmark( b ) {
41+
bench( format( '%s:level=+infinity', pkg ), function benchmark( b ) {
4142
var values;
4243
var out;
4344
var val;
@@ -90,7 +91,7 @@ bench( pkg+':level=+infinity', function benchmark( b ) {
9091
b.end();
9192
});
9293

93-
bench( pkg+':level=1', function benchmark( b ) {
94+
bench( format( '%s:level=1', pkg ), function benchmark( b ) {
9495
var values;
9596
var out;
9697
var val;
@@ -146,7 +147,7 @@ bench( pkg+':level=1', function benchmark( b ) {
146147
b.end();
147148
});
148149

149-
bench( pkg+':level=0', function benchmark( b ) {
150+
bench( format( '%s:level=0', pkg ), function benchmark( b ) {
150151
var values;
151152
var out;
152153
var val;

0 commit comments

Comments
 (0)