Skip to content

Commit f4d075f

Browse files
committed
Auto-generated commit
1 parent e8bddcd commit f4d075f

3 files changed

Lines changed: 38 additions & 3 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,41 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-04-20)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`8cbca87`](https://github.com/stdlib-js/stdlib/commit/8cbca872cf40171f6c3ec4240524ea940dcd8236) - **bench:** refactor to use string interpolation in `regexp` [(#11593)](https://github.com/stdlib-js/stdlib/pull/11593) _(by Karan Anand, Athan Reines)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 2 people contributed to this release. Thank you to the following contributors:
28+
29+
- Athan Reines
30+
- Karan Anand
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.2.3">
641

742
## 0.2.3 (2026-02-08)

benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench-harness' );
2424
var IS_WINDOWS = require( '@stdlib/assert-is-windows' );
2525
var isString = require( '@stdlib/assert-is-string' ).isPrimitive;
2626
var fromCodePoint = require( '@stdlib/string-from-code-point' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var reDirname = require( './../lib' );
2930

@@ -63,7 +64,7 @@ bench( pkg, function benchmark( b ) {
6364
b.end();
6465
});
6566

66-
bench( pkg+':posix', function benchmark( b ) {
67+
bench( format( '%s:posix', pkg ), function benchmark( b ) {
6768
var out;
6869
var str;
6970
var i;
@@ -84,7 +85,7 @@ bench( pkg+':posix', function benchmark( b ) {
8485
b.end();
8586
});
8687

87-
bench( pkg+':win32', function benchmark( b ) {
88+
bench( format( '%s:win32', pkg ), function benchmark( b ) {
8889
var out;
8990
var str;
9091
var i;

0 commit comments

Comments
 (0)