Skip to content

Commit 7efb6da

Browse files
committed
Auto-generated commit
1 parent 9443b4d commit 7efb6da

7 files changed

Lines changed: 59 additions & 11 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: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,41 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2026-04-19)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
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)_
16+
17+
</details>
18+
19+
</section>
20+
21+
<!-- /.commits -->
22+
23+
<section class="contributors">
24+
25+
### Contributors
26+
27+
A total of 2 people contributed to this release. Thank you to the following contributors:
28+
29+
- Karan Anand
30+
- Uday Kakade
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.2.3">
641

742
## 0.2.3 (2026-02-07)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
375375
[npm-image]: http://img.shields.io/npm/v/@stdlib/string-pad.svg
376376
[npm-url]: https://npmjs.org/package/@stdlib/string-pad
377377

378-
[test-image]: https://github.com/stdlib-js/string-pad/actions/workflows/test.yml/badge.svg?branch=v0.2.3
379-
[test-url]: https://github.com/stdlib-js/string-pad/actions/workflows/test.yml?query=branch:v0.2.3
378+
[test-image]: https://github.com/stdlib-js/string-pad/actions/workflows/test.yml/badge.svg?branch=main
379+
[test-url]: https://github.com/stdlib-js/string-pad/actions/workflows/test.yml?query=branch:main
380380

381381
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/string-pad/main.svg
382382
[coverage-url]: https://codecov.io/github/stdlib-js/string-pad?branch=main

benchmark/benchmark.center.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-harness' );
2424
var isString = require( '@stdlib/assert-is-string' ).isPrimitive;
2525
var fromCodePoint = require( '@stdlib/string-from-code-point' );
26+
var format = require( '@stdlib/string-format' );
2627
var pkg = require( './../package.json' ).name;
2728
var pad = require( './../lib' );
2829

@@ -91,7 +92,7 @@ function main() {
9192
for ( i = min; i <= max; i++ ) {
9293
len = 10 * i;
9394
f = createBenchmark( len );
94-
bench( pkg+'::center:len='+len, f );
95+
bench( format( '%s::center:len=%d', pkg, len ), f );
9596
}
9697
}
9798

benchmark/benchmark.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-harness' );
2424
var isString = require( '@stdlib/assert-is-string' ).isPrimitive;
2525
var fromCodePoint = require( '@stdlib/string-from-code-point' );
26+
var format = require( '@stdlib/string-format' );
2627
var pkg = require( './../package.json' ).name;
2728
var pad = require( './../lib' );
2829

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

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@
4444
"@stdlib/assert-is-boolean": "^0.2.3",
4545
"@stdlib/assert-is-nonnegative-integer": "^0.2.3",
4646
"@stdlib/assert-is-plain-object": "^0.2.3",
47-
"@stdlib/assert-is-regexp-string": "^0.2.2",
47+
"@stdlib/assert-is-regexp-string": "^0.2.3",
4848
"@stdlib/assert-is-string": "^0.2.3",
4949
"@stdlib/cli-ctor": "^0.2.3",
5050
"@stdlib/constants-float64-max-safe-integer": "^0.2.3",
5151
"@stdlib/fs-read-file": "^0.2.3",
5252
"@stdlib/math-base-special-abs": "^0.2.3",
5353
"@stdlib/math-base-special-ceil": "^0.2.3",
5454
"@stdlib/math-base-special-floor": "^0.2.4",
55-
"@stdlib/process-read-stdin": "^0.2.2",
55+
"@stdlib/process-read-stdin": "^0.2.3",
5656
"@stdlib/regexp-eol": "^0.2.3",
5757
"@stdlib/streams-node-stdin": "^0.2.3",
5858
"@stdlib/string-format": "^0.2.3",
59-
"@stdlib/string-left-pad": "^0.2.2",
59+
"@stdlib/string-left-pad": "^0.2.3",
6060
"@stdlib/string-repeat": "^0.2.3",
6161
"@stdlib/string-right-pad": "^0.2.3",
6262
"@stdlib/utils-regexp-from-string": "^0.2.3",
@@ -67,14 +67,14 @@
6767
"@stdlib/assert-is-windows": "^0.2.3",
6868
"@stdlib/math-base-special-round": "^0.3.1",
6969
"@stdlib/process-exec-path": "^0.2.3",
70-
"@stdlib/random-base-randu": "^0.2.2",
71-
"@stdlib/string-from-code-point": "^0.2.2",
72-
"@stdlib/string-replace": "^0.2.2",
70+
"@stdlib/random-base-randu": "^0.2.3",
71+
"@stdlib/string-from-code-point": "^0.2.3",
72+
"@stdlib/string-replace": "^0.2.3",
7373
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
7474
"proxyquire": "^2.0.0",
7575
"istanbul": "^0.4.1",
7676
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
77-
"@stdlib/bench-harness": "^0.2.2"
77+
"@stdlib/bench-harness": "^0.2.3"
7878
},
7979
"engines": {
8080
"node": ">=0.10.0",

0 commit comments

Comments
 (0)