Skip to content

Commit daf7e07

Browse files
committed
Auto-generated commit
1 parent 5895fae commit daf7e07

5 files changed

Lines changed: 21 additions & 6 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

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-02-27)
7+
## Unreleased (2026-04-17)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`67c0a20`](https://github.com/stdlib-js/stdlib/commit/67c0a2044e515ea6733765a48be54f09ea749d8f) - **bench:** refactor to use string interpolation in `@stdlib/assert` [(#11398)](https:-/github.com/stdlib-js/stdlib/pull/11398) _(by Karan Anand)_
1516
- [`cd6574f`](https://github.com/stdlib-js/stdlib/commit/cd6574f18432cbcc57d476f00bc58d255ac13f0a) - **style:** revert style changes _(by Athan Reines)_
1617
- [`3024bb3`](https://github.com/stdlib-js/stdlib/commit/3024bb37f70bf55295d9c4bf81107ff57c15ff8a) - **docs:** fix section comments and lint errors in `array` and `assert` READMEs _(by Philipp Burckhardt)_
1718

@@ -25,9 +26,10 @@
2526

2627
### Contributors
2728

28-
A total of 2 people contributed to this release. Thank you to the following contributors:
29+
A total of 3 people contributed to this release. Thank you to the following contributors:
2930

3031
- Athan Reines
32+
- Karan Anand
3133
- Philipp Burckhardt
3234

3335
</section>

benchmark/benchmark.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,14 @@ var bench = require( '@stdlib/bench-harness' );
2424
var Float64Array = require( '@stdlib/array-float64' );
2525
var Complex128Array = require( '@stdlib/array-complex128' );
2626
var isBoolean = require( '@stdlib/assert-is-boolean' ).isPrimitive;
27+
var format = require( '@stdlib/string-format' );
2728
var pkg = require( './../package.json' ).name;
2829
var isAccessorArray = require( './../lib' );
2930

3031

3132
// MAIN //
3233

33-
bench( pkg+'::array', function benchmark( b ) {
34+
bench( format( '%s::array', pkg ), function benchmark( b ) {
3435
var bool;
3536
var obj;
3637
var i;
@@ -51,7 +52,7 @@ bench( pkg+'::array', function benchmark( b ) {
5152
b.end();
5253
});
5354

54-
bench( pkg+'::real_typed_array', function benchmark( b ) {
55+
bench( format( '%s::real_typed_array', pkg ), function benchmark( b ) {
5556
var values;
5657
var bool;
5758
var obj;
@@ -80,7 +81,7 @@ bench( pkg+'::real_typed_array', function benchmark( b ) {
8081
b.end();
8182
});
8283

83-
bench( pkg+'::complex_typed_array', function benchmark( b ) {
84+
bench( format( '%s::complex_typed_array', pkg ), function benchmark( b ) {
8485
var values;
8586
var bool;
8687
var obj;
@@ -109,7 +110,7 @@ bench( pkg+'::complex_typed_array', function benchmark( b ) {
109110
b.end();
110111
});
111112

112-
bench( pkg+'::array_like_object', function benchmark( b ) {
113+
bench( format( '%s::array_like_object', pkg ), function benchmark( b ) {
113114
var bool;
114115
var obj;
115116
var i;

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@
5454
"@stdlib/array-uint8c": "^0.2.3",
5555
"@stdlib/assert-is-boolean": "^0.2.3",
5656
"@stdlib/buffer-alloc-unsafe": "^0.2.3",
57+
"@stdlib/string-format": "^0.2.3",
5758
"@stdlib/utils-constructor-name": "^0.2.3",
5859
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5960
"istanbul": "^0.4.1",

0 commit comments

Comments
 (0)