Skip to content

Commit c747062

Browse files
committed
Auto-generated commit
1 parent d6db993 commit c747062

File tree

96 files changed

+262
-169
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+262
-169
lines changed

.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-04-11)
7+
## Unreleased (2026-04-14)
88

99
<section class="features">
1010

@@ -269,6 +269,7 @@ A total of 38 issues were closed in this release:
269269

270270
<details>
271271

272+
- [`56bc531`](https://github.com/stdlib-js/stdlib/commit/56bc5310298aec8f6eca5ca07ccff333c4792a40) - **bench:** refactor to use string interpolation in `@stdlib/array` [(#11412)](https://github.com/stdlib-js/stdlib/pull/11412) _(by Karan Anand, Athan Reines)_
272273
- [`ae32f26`](https://github.com/stdlib-js/stdlib/commit/ae32f26441101c24f0faf1a04ecceb3e66387578) - **fix:** ensure support for boolean arrays in polyfill _(by Athan Reines)_
273274
- [`08624f9`](https://github.com/stdlib-js/stdlib/commit/08624f9135cd19871865ea671a232f4d3149e639) - **docs:** improve doctests for complex number instances in `array/complex128` [(#10718)](https://github.com/stdlib-js/stdlib/pull/10718) _(by Aniket Sonawane, Athan Reines, stdlib-bot)_
274275
- [`a467bf0`](https://github.com/stdlib-js/stdlib/commit/a467bf0083da8f346611e53a684a78212f76d426) - **chore:** fix typos and incorrect test values [(#11270)](https://github.com/stdlib-js/stdlib/pull/11270) _(by Philipp Burckhardt)_
@@ -799,7 +800,7 @@ A total of 38 issues were closed in this release:
799800

800801
### Contributors
801802

802-
A total of 42 people contributed to this release. Thank you to the following contributors:
803+
A total of 43 people contributed to this release. Thank you to the following contributors:
803804

804805
- Aayush Khanna
805806
- Abhijit Raut
@@ -819,6 +820,7 @@ A total of 42 people contributed to this release. Thank you to the following con
819820
- Gururaj Gurram
820821
- Harshit Verma
821822
- Jay Soni
823+
- Karan Anand
822824
- Kate Suraev
823825
- KovidhRaj
824826
- Kshitij-Dale

base/assert/is-sorted-ascending/benchmark/benchmark.accessors.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ function main() {
9191
len = pow( 10, i );
9292

9393
f = createBenchmark( len );
94-
bench( format( '%s::accessors:len=%s', pkg, len ), f );
94+
bench( format( '%s::accessors:len=%d', pkg, len ), f );
9595
}
9696
}
9797

base/assert/is-sorted-ascending/benchmark/benchmark.length.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ function main() {
9090
len = pow( 10, i );
9191

9292
f = createBenchmark( len );
93-
bench( format( '%s:len=%s', pkg, len ), f );
93+
bench( format( '%s:len=%d', pkg, len ), f );
9494
}
9595
}
9696

base/join/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var isString = require( '@stdlib/assert/is-string' ).isPrimitive;
2626
var ones = require( './../../../base/ones' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var join = require( './../lib' );
2930

@@ -89,7 +90,7 @@ function main() {
8990
len = pow( 10, i );
9091

9192
f = createBenchmark( len );
92-
bench( pkg+':dtype=generic,len='+len, f );
93+
bench( format( '%s:dtype=generic,len=%d', pkg, len ), f );
9394
}
9495
}
9596

base/last-index-of-same-value/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var isInteger = require( '@stdlib/assert/is-integer' ).isPrimitive;
2626
var zeroTo = require( './../../../base/zero-to' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var lastIndexOfSameValue = require( './../lib' );
2930

@@ -89,7 +90,7 @@ function main() {
8990
len = pow( 10, i );
9091

9192
f = createBenchmark( len );
92-
bench( pkg+':dtype=generic,len='+len, f );
93+
bench( format( '%s:dtype=generic,len=%d', pkg, len ), f );
9394
}
9495
}
9596

base/last-index-of/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var isInteger = require( '@stdlib/assert/is-integer' ).isPrimitive;
2626
var zeroTo = require( './../../../base/zero-to' );
27+
var format = require( '@stdlib/string/format' );
2728
var pkg = require( './../package.json' ).name;
2829
var lastIndexOf = require( './../lib' );
2930

@@ -89,7 +90,7 @@ function main() {
8990
len = pow( 10, i );
9091

9192
f = createBenchmark( len );
92-
bench( pkg+':dtype=generic,len='+len, f );
93+
bench( format( '%s:dtype=generic,len=%d', pkg, len ), f );
9394
}
9495
}
9596

base/last/benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var discreteUniform = require( '@stdlib/random/base/discrete-uniform' ).factory;
2525
var pow = require( '@stdlib/math/base/special/pow' );
2626
var filledBy = require( './../../../filled-by' );
2727
var isnanf = require( '@stdlib/math/base/assert/is-nanf' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var last = require( './../lib' );
3031

@@ -95,7 +96,7 @@ function main() {
9596
len = pow( 10, i );
9697

9798
f = createBenchmark( len );
98-
bench( pkg+':len='+len, f );
99+
bench( format( '%s:len=%d', pkg, len ), f );
99100
}
100101
}
101102

base/linspace/benchmark/benchmark.length.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
var bench = require( '@stdlib/bench' );
2424
var pow = require( '@stdlib/math/base/special/pow' );
2525
var isArray = require( '@stdlib/assert/is-array' );
26+
var format = require( '@stdlib/string/format' );
2627
var pkg = require( './../package.json' ).name;
2728
var linspace = require( './../lib' );
2829

@@ -86,7 +87,7 @@ function main() {
8687
for ( i = min; i <= max; i++ ) {
8788
len = pow( 10, i );
8889
f = createBenchmark( len );
89-
bench( pkg+':len='+len, f );
90+
bench( format( '%s:len=%d', pkg, len ), f );
9091
}
9192
}
9293

base/linspace2d/benchmark/benchmark.size.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var pow = require( '@stdlib/math/base/special/pow' );
2525
var floor = require( '@stdlib/math/base/special/floor' );
2626
var sqrt = require( '@stdlib/math/base/special/sqrt' );
2727
var isArrayArray = require( '@stdlib/assert/is-array-array' );
28+
var format = require( '@stdlib/string/format' );
2829
var pkg = require( './../package.json' ).name;
2930
var linspace2d = require( './../lib' );
3031

@@ -88,7 +89,7 @@ function main() {
8889
for ( i = min; i <= max; i++ ) {
8990
N = floor( sqrt( pow( 10, i ) ) );
9091
f = createBenchmark( N );
91-
bench( pkg+'::square_matrix:size='+(N*N), f );
92+
bench( format( '%s::square_matrix:size=%d', pkg, N*N ), f );
9293
}
9394
}
9495

0 commit comments

Comments
 (0)