Skip to content

Commit 7703caf

Browse files
committed
Auto-generated commit
1 parent 7c1685b commit 7703caf

5 files changed

Lines changed: 21 additions & 5 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: 4 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-05-13)
7+
## Unreleased (2026-05-20)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`1a5e918`](https://github.com/stdlib-js/stdlib/commit/1a5e918630d60846c8a45a1f51687ed441c54dbe) - **bench:** refactor to use string interpolation in `ndarray/base` [(#11437)](https://github.com/stdlib-js/stdlib/pull/11437) _(by Karan Anand)_
1516
- [`887f9ca`](https://github.com/stdlib-js/stdlib/commit/887f9caca4ebe0bca507718b2f0ac26f063298c3) - **docs:** update examples and benchmarks _(by Athan Reines)_
1617

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

2526
### Contributors
2627

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

2930
- Athan Reines
31+
- Karan Anand
3032

3133
</section>
3234

benchmark/benchmark.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,14 @@ var shape2strides = require( '@stdlib/ndarray-base-shape2strides' );
2626
var strides2offset = require( '@stdlib/ndarray-base-strides2offset' );
2727
var numel = require( '@stdlib/ndarray-base-numel' );
2828
var zeroTo = require( '@stdlib/array-base-zero-to' );
29+
var format = require( '@stdlib/string-format' );
2930
var pkg = require( './../package.json' ).name;
3031
var ndarray2array = require( './../lib' );
3132

3233

3334
// MAIN //
3435

35-
bench( pkg+':order=row-major', function benchmark( b ) {
36+
bench( format( '%s:order=row-major', pkg ), function benchmark( b ) {
3637
var strides;
3738
var buffer;
3839
var offset;
@@ -68,7 +69,7 @@ bench( pkg+':order=row-major', function benchmark( b ) {
6869
b.end();
6970
});
7071

71-
bench( pkg+':order=column-major', function benchmark( b ) {
72+
bench( format( '%s:order=column-major', pkg ), function benchmark( b ) {
7273
var strides;
7374
var buffer;
7475
var offset;

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
"@stdlib/ndarray-base-shape2strides": "^0.2.3",
5252
"@stdlib/ndarray-base-strides2offset": "^0.2.3",
5353
"@stdlib/random-base-discrete-uniform": "^0.2.2",
54+
"@stdlib/string-format": "^0.2.3",
5455
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
5556
"istanbul": "^0.4.1",
5657
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",

0 commit comments

Comments
 (0)