Skip to content

Commit 353f3a0

Browse files
committed
Auto-generated commit
1 parent a1f8e53 commit 353f3a0

5 files changed

Lines changed: 41 additions & 5 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

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

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-04-12)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`addf3a2`](https://github.com/stdlib-js/stdlib/commit/addf3a2ac0da61588b9df6f28c56b04c4da9a638) - **bench:** refactor to use string interpolation in `math/base/assert` [(#11385)](https://github.com/stdlib-js/stdlib/pull/11385) _(by Karan Anand)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 1 person contributed to this release. Thank you to this contributor:
28+
29+
- Karan Anand
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.1.1">
640

741
## 0.1.1 (2026-02-08)

benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,14 @@
2222

2323
var bench = require( '@stdlib/bench-harness' );
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 isIntegerf = require( './../lib' );
2728

2829

2930
// MAIN //
3031

31-
bench( pkg+'::true', function benchmark( b ) {
32+
bench( format( '%s::true', pkg ), function benchmark( b ) {
3233
var values;
3334
var bool;
3435
var i;
@@ -75,7 +76,7 @@ bench( pkg+'::true', function benchmark( b ) {
7576
b.end();
7677
});
7778

78-
bench( pkg+'::false', function benchmark( b ) {
79+
bench( format( '%s::false', pkg ), function benchmark( b ) {
7980
var values;
8081
var bool;
8182
var i;

benchmark/benchmark.native.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var resolve = require( 'path' ).resolve;
2424
var bench = require( '@stdlib/bench-harness' );
2525
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
2626
var tryRequire = require( '@stdlib/utils-try-require' );
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829

2930

@@ -37,7 +38,7 @@ var opts = {
3738

3839
// MAIN //
3940

40-
bench( pkg+'::native,true', opts, function benchmark( b ) {
41+
bench( format( '%s::native,true', pkg ), opts, function benchmark( b ) {
4142
var values;
4243
var bool;
4344
var i;
@@ -84,7 +85,7 @@ bench( pkg+'::native,true', opts, function benchmark( b ) {
8485
b.end();
8586
});
8687

87-
bench( pkg+'::native,false', opts, function benchmark( b ) {
88+
bench( format( '%s::native,false', pkg ), opts, function benchmark( b ) {
8889
var values;
8990
var bool;
9091
var i;

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"@stdlib/constants-float32-pinf": "^0.2.3",
5656
"@stdlib/math-base-special-truncf": "^0.2.3",
5757
"@stdlib/random-base-randu": "^0.2.3",
58+
"@stdlib/string-format": "^0.2.3",
5859
"@stdlib/utils-try-require": "^0.2.3",
5960
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6061
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)