Skip to content

Commit e56a7d4

Browse files
committed
Auto-generated commit
1 parent b46d88f commit e56a7d4

4 files changed

Lines changed: 20 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

CHANGELOG.md

Lines changed: 5 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-25)
7+
## Unreleased (2026-04-19)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`aa8d436`](https://github.com/stdlib-js/stdlib/commit/aa8d436e7f5bcab413e101bc9954e9e15d162d5d) - **bench:** refactor to use string interpolation in `@stdlib/string` [(#11456)](https:-/github.com/stdlib-js/stdlib/pull/11456) _(by Uday Kakade, Karan Anand)_
1516
- [`46f06ad`](https://github.com/stdlib-js/stdlib/commit/46f06ad6754741320241c60ff79ffdf0a7175b07) - **docs:** fix section tags in README files _(by Philipp Burckhardt)_
1617

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

2526
### Contributors
2627

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

30+
- Karan Anand
2931
- Philipp Burckhardt
32+
- Uday Kakade
3033

3134
</section>
3235

benchmark/benchmark.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
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 endsWith = require( './../lib' );
2728

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

66-
bench( pkg+'::substring', function benchmark( b ) {
67+
bench( format( '%s::substring', pkg ), function benchmark( b ) {
6768
var values;
6869
var bool;
6970
var str;
@@ -90,7 +91,7 @@ bench( pkg+'::substring', function benchmark( b ) {
9091
b.end();
9192
});
9293

93-
bench( pkg+'::builtin', opts, function benchmark( b ) {
94+
bench( format( '%s::builtin', pkg ), opts, function benchmark( b ) {
9495
var values;
9596
var bool;
9697
var str;
@@ -118,7 +119,7 @@ bench( pkg+'::builtin', opts, function benchmark( b ) {
118119
b.end();
119120
});
120121

121-
bench( pkg+'::builtin,substring', opts, function benchmark( b ) {
122+
bench( format( '%s::builtin,substring', pkg ), opts, function benchmark( b ) {
122123
var values;
123124
var bool;
124125
var str;

0 commit comments

Comments
 (0)