Skip to content

Commit e93322f

Browse files
committed
Auto-generated commit
1 parent 04c0213 commit e93322f

9 files changed

Lines changed: 54 additions & 5 deletions

File tree

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,15 @@ indent_style = tab
165165
indent_style = space
166166
indent_size = 2
167167
168+
# Ignore generated lock files for GitHub Agentic Workflows:
169+
[*.lock.yml]
170+
charset = unset
171+
end_of_line = unset
172+
indent_style = unset
173+
indent_size = unset
174+
trim_trailing_whitespace = unset
175+
insert_final_newline = unset
176+
168177
# Set properties for GYP files:
169178
[binding.gyp]
170179
indent_style = space

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,5 @@ Makefile linguist-vendored
6464

6565
# Configure files which should be included in GitHub language statistics:
6666
docs/types/*.d.ts -linguist-documentation
67+
68+
.github/workflows/*.lock.yml linguist-generated=true merge=ours

.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-11)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`be9f744`](https://github.com/stdlib-js/stdlib/commit/be9f7445e37168f514e83041e80e9495c49fd9d9) - **bench:** refactor to use string interpolation in `math/strided/special` [(#11362)](https://github.com/stdlib-js/stdlib/pull/11362) _(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.2.3">
640

741
## 0.2.3 (2026-02-07)

benchmark/benchmark.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var randu = require( '@stdlib/random-base-randu' );
2525
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2626
var pow = require( '@stdlib/math-base-special-pow' );
2727
var Float64Array = require( '@stdlib/array-float64' );
28+
var format = require( '@stdlib/string-format' );
2829
var pkg = require( './../package.json' ).name;
2930
var dabs2 = require( './../lib/main.js' );
3031

@@ -97,7 +98,7 @@ function main() {
9798
for ( i = min; i <= max; i++ ) {
9899
len = pow( 10, i );
99100
f = createBenchmark( len );
100-
bench( pkg+':len='+len, f );
101+
bench( format( '%s:len=%d', pkg, len ), f );
101102
}
102103
}
103104

benchmark/benchmark.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var isnan = require( '@stdlib/math-base-assert-is-nan' );
2727
var pow = require( '@stdlib/math-base-special-pow' );
2828
var Float64Array = require( '@stdlib/array-float64' );
2929
var tryRequire = require( '@stdlib/utils-try-require' );
30+
var format = require( '@stdlib/string-format' );
3031
var pkg = require( './../package.json' ).name;
3132

3233

@@ -106,7 +107,7 @@ function main() {
106107
for ( i = min; i <= max; i++ ) {
107108
len = pow( 10, i );
108109
f = createBenchmark( len );
109-
bench( pkg+'::native:len='+len, opts, f );
110+
bench( format( '%s::native:len=%d', pkg, len ), opts, f );
110111
}
111112
}
112113

benchmark/benchmark.ndarray.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var randu = require( '@stdlib/random-base-randu' );
2525
var isnan = require( '@stdlib/math-base-assert-is-nan' );
2626
var pow = require( '@stdlib/math-base-special-pow' );
2727
var Float64Array = require( '@stdlib/array-float64' );
28+
var format = require( '@stdlib/string-format' );
2829
var pkg = require( './../package.json' ).name;
2930
var dabs2 = require( './../lib/ndarray.js' );
3031

@@ -97,7 +98,7 @@ function main() {
9798
for ( i = min; i <= max; i++ ) {
9899
len = pow( 10, i );
99100
f = createBenchmark( len );
100-
bench( pkg+':ndarray:len='+len, f );
101+
bench( format( '%s:ndarray:len=%d', pkg, len ), f );
101102
}
102103
}
103104

benchmark/benchmark.ndarray.native.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ var isnan = require( '@stdlib/math-base-assert-is-nan' );
2727
var pow = require( '@stdlib/math-base-special-pow' );
2828
var Float64Array = require( '@stdlib/array-float64' );
2929
var tryRequire = require( '@stdlib/utils-try-require' );
30+
var format = require( '@stdlib/string-format' );
3031
var pkg = require( './../package.json' ).name;
3132

3233

@@ -106,7 +107,7 @@ function main() {
106107
for ( i = min; i <= max; i++ ) {
107108
len = pow( 10, i );
108109
f = createBenchmark( len );
109-
bench( pkg+'::native:ndarray:len='+len, opts, f );
110+
bench( format( '%s::native:ndarray:len=%d', pkg, len ), opts, f );
110111
}
111112
}
112113

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
"@stdlib/math-base-special-pow": "^0.3.1",
5757
"@stdlib/math-base-special-round": "^0.3.1",
5858
"@stdlib/random-base-randu": "^0.2.3",
59+
"@stdlib/string-format": "^0.2.3",
5960
"proxyquire": "^2.0.0",
6061
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6162
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)