Skip to content

Commit bcb8847

Browse files
committed
Auto-generated commit
1 parent 72917df commit bcb8847

9 files changed

Lines changed: 31 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: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,25 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-05-11)
7+
## Unreleased (2026-05-27)
8+
9+
<section class="bug-fixes">
10+
11+
### Bug Fixes
12+
13+
- [`95a8c41`](https://github.com/stdlib-js/stdlib/commit/95a8c41a2a5313aea289e722bed88bc888454233) - use correct argument value in error message and propagate JSDoc fixes to sibling packages [(#12302)](https://github.com/stdlib-js/stdlib/pull/12302)
14+
15+
</section>
16+
17+
<!-- /.bug-fixes -->
818

919
<section class="commits">
1020

1121
### Commits
1222

1323
<details>
1424

25+
- [`95a8c41`](https://github.com/stdlib-js/stdlib/commit/95a8c41a2a5313aea289e722bed88bc888454233) - **fix:** use correct argument value in error message and propagate JSDoc fixes to sibling packages [(#12302)](https://github.com/stdlib-js/stdlib/pull/12302) _(by Philipp Burckhardt)_
1526
- [`35566af`](https://github.com/stdlib-js/stdlib/commit/35566af0add64775e60422fd16e50e1bec3947e7) - **docs:** fix C examples in READMEs [(#11229)](https://github.com/stdlib-js/stdlib/pull/11229) _(by anee3, Athan Reines)_
1627
- [`9a18a03`](https://github.com/stdlib-js/stdlib/commit/9a18a03e86bfed34475b176b2732303aab09c86c) - **bench:** refactor to use dynamic memory allocation in `blas/base/sspr` [(#10332)](https://github.com/stdlib-js/stdlib/pull/10332) _(by Prajjwal Bajpai)_
1728
- [`338737a`](https://github.com/stdlib-js/stdlib/commit/338737a1f9c6f3b88a9bc5338f35dc90dc82b43a) - **bench:** refactor to use string interpolation in `blas/base/sspr` [(#10333)](https://github.com/stdlib-js/stdlib/pull/10333) _(by Prajjwal Bajpai, Philipp Burckhardt)_

dist/index.js.map

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

lib/base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var f32 = require( '@stdlib/number-float64-base-to-float32' );
3434
* @param {string} order - storage layout
3535
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
3636
* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
37-
* @param {number} alpha - scalar
37+
* @param {number} alpha - scalar constant
3838
* @param {Float32Array} x - input vector
3939
* @param {integer} strideX - `x` stride length
4040
* @param {NonNegativeInteger} offsetX - starting index for `x`

lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var base = require( './base.js' );
3434
* @param {string} order - storage layout
3535
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
3636
* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
37-
* @param {number} alpha - scalar
37+
* @param {number} alpha - scalar constant
3838
* @param {Float32Array} x - input vector
3939
* @param {integer} strideX - `x` stride length
4040
* @param {NonNegativeInteger} offsetX - starting index for `x`

lib/ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var addon = require( './../src/addon.node' );
3030
* @param {string} order - storage layout
3131
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
3232
* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
33-
* @param {number} alpha - scalar
33+
* @param {number} alpha - scalar constant
3434
* @param {Float32Array} x - input vector
3535
* @param {integer} strideX - `x` stride length
3636
* @param {NonNegativeInteger} offsetX - starting index for `x`

lib/sspr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ var base = require( './base.js' );
3535
* @param {string} order - storage layout
3636
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
3737
* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
38-
* @param {number} alpha - scalar
38+
* @param {number} alpha - scalar constant
3939
* @param {Float32Array} x - input vector
4040
* @param {integer} strideX - `x` stride length
4141
* @param {Float32Array} AP - packed form of a symmetric matrix `A`

lib/sspr.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ var addon = require( './../src/addon.node' );
3333
* @param {string} order - storage layout
3434
* @param {string} uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` is supplied
3535
* @param {NonNegativeInteger} N - number of elements along each dimension of `A`
36-
* @param {number} alpha - scalar
36+
* @param {number} alpha - scalar constant
3737
* @param {Float32Array} x - input vector
3838
* @param {integer} strideX - `x` stride length
3939
* @param {Float32Array} AP - packed form of a symmetric matrix `A`

0 commit comments

Comments
 (0)