Skip to content

Commit bc2a37a

Browse files
committed
Auto-generated commit
1 parent 3e3aa0d commit bc2a37a

5 files changed

Lines changed: 51 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: 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-05-20)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`ad8f9b5`](https://github.com/stdlib-js/stdlib/commit/ad8f9b59d9838fadeac1c3a7d53a5c6cfcf11365) - **bench:** refactor to use string interpolation in `ndarray/base` [(#11431)](https://github.com/stdlib-js/stdlib/pull/11431) _(by Karan Anand)_
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+
- Karan Anand
30+
31+
</section>
32+
33+
<!-- /.contributors -->
34+
35+
</section>
36+
37+
<!-- /.release -->
38+
539
<section class="release" id="v0.2.4">
640

741
## 0.2.4 (2026-02-08)

benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@
2323
var bench = require( '@stdlib/bench-harness' );
2424
var isArray = require( '@stdlib/assert-is-array' );
2525
var shape2strides = require( '@stdlib/ndarray-base-shape2strides' );
26+
var format = require( '@stdlib/string-format' );
2627
var pkg = require( './../package.json' ).name;
2728
var binaryLoopOrder = require( './../lib' );
2829

2930

3031
// MAIN //
3132

32-
bench( pkg+'::row-major', function benchmark( b ) {
33+
bench( format( '%s::row-major', pkg ), function benchmark( b ) {
3334
var strides;
3435
var factors;
3536
var shape;
@@ -59,7 +60,7 @@ bench( pkg+'::row-major', function benchmark( b ) {
5960
b.end();
6061
});
6162

62-
bench( pkg+'::column-major', function benchmark( b ) {
63+
bench( format( '%s::column-major', pkg ), function benchmark( b ) {
6364
var strides;
6465
var factors;
6566
var shape;

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"@stdlib/ndarray-base-shape2strides": "^0.2.3",
4747
"@stdlib/ndarray-shape": "^0.2.3",
4848
"@stdlib/ndarray-strides": "^0.2.3",
49+
"@stdlib/string-format": "^0.2.3",
4950
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5051
"istanbul": "^0.4.1",
5152
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)