Skip to content

Commit 82d32b7

Browse files
committed
Auto-generated commit
1 parent 3fa2860 commit 82d32b7

7 files changed

Lines changed: 22 additions & 8 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-19)
7+
## Unreleased (2026-06-25)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`1977f92`](https://github.com/stdlib-js/stdlib/commit/1977f92944b56c40c27b23d74570f2958adc7a39) - **docs:** update documented default value for `submode` option [(#13106)](https://github.com/stdlib-js/stdlib/pull/13106) _(by Philipp Burckhardt)_
1516
- [`5aadc76`](https://github.com/stdlib-js/stdlib/commit/5aadc76d03d8e3c511de2f14131be73dfe118af9) - **bench:** refactor to use string interpolation in `ndarray` [(#11445)](https://github.com/stdlib-js/stdlib/pull/11445) _(by Karan Anand)_
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
- Karan Anand
31+
- Philipp Burckhardt
3032

3133
</section>
3234

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var DEFAULT_ORDER = defaults( 'order' );
5050
* @param {string} x.order - specifies whether `x` is row-major (C-style) or column-major (Fortran-style)
5151
* @param {Options} [options] - function options
5252
* @param {string} [options.mode="throw"] - specifies how to handle indices which exceed array dimensions
53-
* @param {StringArray} [options.submode=["throw"]] - specifies how to handle subscripts which exceed array dimensions on a per dimension basis
53+
* @param {StringArray} [options.submode=[options.mode]] - specifies how to handle subscripts which exceed array dimensions on a per dimension basis
5454
* @param {boolean} [options.readonly=false] - boolean indicating whether an array should be read-only
5555
* @throws {Error} cannot write to a read-only array
5656
* @returns {ndarray} ndarray

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"@stdlib/ndarray-order": "^0.2.3",
4747
"@stdlib/ndarray-shape": "^0.2.3",
4848
"@stdlib/ndarray-strides": "^0.2.3",
49-
"@stdlib/types": "^0.4.3"
49+
"@stdlib/types": "^0.5.1"
5050
},
5151
"devDependencies": {
5252
"@stdlib/array-float64": "^0.2.3",

0 commit comments

Comments
 (0)