Skip to content

Commit be129d4

Browse files
committed
Auto-generated commit
1 parent d8ff09f commit be129d4

File tree

6 files changed

+51
-5
lines changed

6 files changed

+51
-5
lines changed

.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-03-20)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`a0084e4`](https://github.com/stdlib-js/stdlib/commit/a0084e42e84516d1b9031ce2994e8694a294b92f) - **bench:** refactor to use string interpolation in `ndarray/base/buffer-ctors` [(#11038)](https://github.com/stdlib-js/stdlib/pull/11038) _(by Partha Das)_
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+
- Partha Das
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.4.1">
640

741
## 0.4.1 (2026-02-08)

benchmark/benchmark.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ var DataType = require( '@stdlib/ndarray-dtype-ctor' );
2525
var dtypes = require( '@stdlib/ndarray-dtypes' );
2626
var structFactory = require( '@stdlib/dstructs-struct' );
2727
var isFunction = require( '@stdlib/assert-is-function' );
28+
var format = require( '@stdlib/string-format' );
2829
var pkg = require( './../package.json' ).name;
2930
var ctors = require( './../lib' );
3031

@@ -36,7 +37,7 @@ var DTYPES = dtypes( 'integer_and_generic' );
3637

3738
// MAIN //
3839

39-
bench( pkg+'::strings', function benchmark( b ) {
40+
bench( format( '%s::strings', pkg ), function benchmark( b ) {
4041
var ctor;
4142
var i;
4243

@@ -55,7 +56,7 @@ bench( pkg+'::strings', function benchmark( b ) {
5556
b.end();
5657
});
5758

58-
bench( pkg+'::data_type_instances,strings', function benchmark( b ) {
59+
bench( format( '%s::data_type_instances,strings', pkg ), function benchmark( b ) {
5960
var values;
6061
var ctor;
6162
var i;
@@ -81,7 +82,7 @@ bench( pkg+'::data_type_instances,strings', function benchmark( b ) {
8182
b.end();
8283
});
8384

84-
bench( pkg+'::structs', function benchmark( b ) {
85+
bench( format( '%s::structs', pkg ), function benchmark( b ) {
8586
var schema;
8687
var values;
8788
var ctor;
@@ -118,7 +119,7 @@ bench( pkg+'::structs', function benchmark( b ) {
118119
b.end();
119120
});
120121

121-
bench( pkg+'::data_type_instances,structs', function benchmark( b ) {
122+
bench( format( '%s::data_type_instances,structs', pkg ), function benchmark( b ) {
122123
var schema;
123124
var values;
124125
var ctor;

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"@stdlib/dstructs-struct": "^0.1.1",
6161
"@stdlib/ndarray-dtype-ctor": "^0.1.1",
6262
"@stdlib/ndarray-dtypes": "^0.4.1",
63+
"@stdlib/string-format": "^0.2.3",
6364
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
6465
"istanbul": "^0.4.1",
6566
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)