Skip to content

Commit 8189d51

Browse files
committed
Auto-generated commit
1 parent 3acb45e commit 8189d51

5 files changed

Lines changed: 52 additions & 3 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.npmrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,16 @@ save = false
2929

3030
# Do not generate provenance metadata:
3131
provenance = false
32+
33+
# Prefer cached dependencies during install:
34+
prefer-offline = true
35+
36+
# Require signing Git commits and tags when using `npm version`:
37+
sign-git-commit = true
38+
sign-git-tag = true
39+
40+
# Run Git commit hooks when using `npm version`:
41+
commit-hooks = true
42+
43+
# Require that dependencies within the dependency tree have a minimum release age (in days) in order to guard against supply chain attacks:
44+
min-release-age = 90

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-05-20)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`00885d3`](https://github.com/stdlib-js/stdlib/commit/00885d3e6afd8118ce2b6e5f7a1c544d5b6d4ffb) - **bench:** refactor to use string interpolation in `array` [(#11411)](https://github.com/stdlib-js/stdlib/pull/11411) _(by Karan Anand, Athan Reines)_
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+
- Athan Reines
30+
- Karan Anand
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.2.2">
641

742
## 0.2.2 (2026-02-08)

benchmark/benchmark.float64.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var isnan = require( '@stdlib/assert-is-nan' ).isPrimitive;
2626
var zeroTo = require( '@stdlib/array-zero-to' );
2727
var zeros = require( '@stdlib/array-zeros' );
2828
var Slice = require( '@stdlib/slice-ctor' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031
var sliceAssign = require( './../lib' );
3132

@@ -101,7 +102,7 @@ function main() {
101102
len = pow( 10, i );
102103

103104
f = createBenchmark( len );
104-
bench( pkg+':dtype=float64,len='+len, f );
105+
bench( format( '%s:dtype=float64,len=%d', pkg, len ), f );
105106
}
106107
}
107108

benchmark/benchmark.generic.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ var isnan = require( '@stdlib/assert-is-nan' ).isPrimitive;
2626
var zeroTo = require( '@stdlib/array-zero-to' );
2727
var zeros = require( '@stdlib/array-zeros' );
2828
var Slice = require( '@stdlib/slice-ctor' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031
var sliceAssign = require( './../lib' );
3132

@@ -101,7 +102,7 @@ function main() {
101102
len = pow( 10, i );
102103

103104
f = createBenchmark( len );
104-
bench( pkg+':dtype=generic,len='+len, f );
105+
bench( format( '%s:dtype=generic,len=%d', pkg, len ), f );
105106
}
106107
}
107108

0 commit comments

Comments
 (0)