Skip to content

Commit f4c51a6

Browse files
committed
Auto-generated commit
1 parent 06d0532 commit f4c51a6

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

CHANGELOG.md

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

7-
## Unreleased (2026-04-08)
7+
## Unreleased (2026-04-12)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`e88fed7`](https://github.com/stdlib-js/stdlib/commit/e88fed78fbf6aaf1043cb4489e3af510007b5dd0) - **bench:** refactor to use string interpolation in `@stdlib/stats` [(#11396)](https:-/github.com/stdlib-js/stdlib/pull/11396) _(by Karan Anand)_
1516
- [`bd60a20`](https://github.com/stdlib-js/stdlib/commit/bd60a209ca4b0989663edbbc591bc7da80294827) - **build:** update R version to 4.2.0 in lint workflows [(#11262)](https://github.com/stdlib-js/stdlib/pull/11262) _(by Mara Averick)_
1617

1718
</details>
@@ -24,8 +25,9 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

30+
- Karan Anand
2931
- Mara Averick
3032

3133
</section>

benchmark/benchmark.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench-harness' );
2424
var randu = require( '@stdlib/random-base-randu' );
2525
var isObject = require( '@stdlib/assert-is-object' );
2626
var isString = require( '@stdlib/assert-is-string' ).isPrimitive;
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var ttest2 = require( './../lib' );
2930

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

65-
bench( pkg+'::equal_variances', function benchmark( b ) {
66+
bench( format( '%s::equal_variances', pkg ), function benchmark( b ) {
6667
var result;
6768
var opts;
6869
var y;
@@ -97,7 +98,7 @@ bench( pkg+'::equal_variances', function benchmark( b ) {
9798
b.end();
9899
});
99100

100-
bench( pkg+'::one-sided', function benchmark( b ) {
101+
bench( format( '%s::one-sided', pkg ), function benchmark( b ) {
101102
var result;
102103
var opts;
103104
var y;
@@ -132,7 +133,7 @@ bench( pkg+'::one-sided', function benchmark( b ) {
132133
b.end();
133134
});
134135

135-
bench( pkg+'::equal_variances,one-sided', function benchmark( b ) {
136+
bench( format( '%s::equal_variances,one-sided', pkg ), function benchmark( b ) {
136137
var result;
137138
var opts;
138139
var y;
@@ -168,7 +169,7 @@ bench( pkg+'::equal_variances,one-sided', function benchmark( b ) {
168169
b.end();
169170
});
170171

171-
bench( pkg+':print', function benchmark( b ) {
172+
bench( format( '%s:print', pkg ), function benchmark( b ) {
172173
var digits;
173174
var result;
174175
var output;

0 commit comments

Comments
 (0)