Skip to content

Commit f8cd656

Browse files
committed
Auto-generated commit
1 parent aba3aec commit f8cd656

6 files changed

Lines changed: 32 additions & 17 deletions

File tree

.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-10)
7+
## Unreleased (2026-06-16)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`3901886`](https://github.com/stdlib-js/stdlib/commit/3901886ff5ff6bdbcfd65ea52109fee0b0e1ff03) - **docs:** fix examples and descriptions in top-level `array` declarations [(#12375)](https://github.com/stdlib-js/stdlib/pull/12375) _(by Philipp Burckhardt, Athan Reines)_
1516
- [`7ae30c3`](https://github.com/stdlib-js/stdlib/commit/7ae30c37a2db6298fc32bcfce8e52db8e940d1e5) - **docs:** improve doctests for complex number typed arrays in `array/complex128` [(#12071)](https://github.com/stdlib-js/stdlib/pull/12071) _(by Karan Anand)_
1617
- [`32af5b8`](https://github.com/stdlib-js/stdlib/commit/32af5b8558638f4e0a35432fb355affd8bce097d) - **test:** fix `Complex128` import in `array/complex128` [(#12064)](https://github.com/stdlib-js/stdlib/pull/12064) _(by Karan Anand)_
1718
- [`ccec3e4`](https://github.com/stdlib-js/stdlib/commit/ccec3e43076042d67dbaa814e5140c10f1b85b58) - **docs:** improve doctests for complex number instances in `array/complex128` [(#11973)](https://github.com/stdlib-js/stdlib/pull/11973) _(by Karan Anand)_
@@ -28,11 +29,12 @@
2829

2930
### Contributors
3031

31-
A total of 4 people contributed to this release. Thank you to the following contributors:
32+
A total of 5 people contributed to this release. Thank you to the following contributors:
3233

3334
- Aniket Sonawane
3435
- Athan Reines
3536
- Karan Anand
37+
- Philipp Burckhardt
3638
- Shubham
3739

3840
</section>

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: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/types/index.d.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -278,12 +278,12 @@ declare class Complex128Array implements Complex128ArrayInterface {
278278
* @param arg - length, typed array, array-like object, or buffer
279279
* @param byteOffset - byte offset (default: 0)
280280
* @param length - view length
281-
* @throws ArrayBuffer byte length must be a multiple of `8`
281+
* @throws ArrayBuffer byte length must be a multiple of `16`
282282
* @throws array-like object and typed array input arguments must have a length which is a multiple of two
283283
* @throws if provided only a single argument, must provide a valid argument
284284
* @throws byte offset must be a nonnegative integer
285-
* @throws byte offset must be a multiple of `8`
286-
* @throws view length must be a positive multiple of `8`
285+
* @throws byte offset must be a multiple of `16`
286+
* @throws view length must be a positive multiple of `16`
287287
* @throws must provide sufficient memory to accommodate byte offset and view length requirements
288288
* @throws an iterator must return either a two element array containing real and imaginary components or a complex number
289289
* @returns complex number array
@@ -1240,12 +1240,12 @@ interface Complex128ArrayConstructor {
12401240
* @param arg - length, typed array, array-like object, or buffer
12411241
* @param byteOffset - byte offset (default: 0)
12421242
* @param length - view length
1243-
* @throws ArrayBuffer byte length must be a multiple of `8`
1243+
* @throws ArrayBuffer byte length must be a multiple of `16`
12441244
* @throws array-like object and typed array input arguments must have a length which is a multiple of two
12451245
* @throws if provided only a single argument, must provide a valid argument
12461246
* @throws byte offset must be a nonnegative integer
1247-
* @throws byte offset must be a multiple of `8`
1248-
* @throws view length must be a positive multiple of `8`
1247+
* @throws byte offset must be a multiple of `16`
1248+
* @throws view length must be a positive multiple of `16`
12491249
* @throws must provide sufficient memory to accommodate byte offset and view length requirements
12501250
* @throws an iterator must return either a two element array containing real and imaginary components or a complex number
12511251
* @returns complex number array
@@ -1309,12 +1309,12 @@ interface Complex128ArrayConstructor {
13091309
* @param arg - length, typed array, array-like object, or buffer
13101310
* @param byteOffset - byte offset (default: 0)
13111311
* @param length - view length
1312-
* @throws ArrayBuffer byte length must be a multiple of `8`
1312+
* @throws ArrayBuffer byte length must be a multiple of `16`
13131313
* @throws array-like object and typed array input arguments must have a length which is a multiple of two
13141314
* @throws if provided only a single argument, must provide a valid argument
13151315
* @throws byte offset must be a nonnegative integer
1316-
* @throws byte offset must be a multiple of `8`
1317-
* @throws view length must be a positive multiple of `8`
1316+
* @throws byte offset must be a multiple of `16`
1317+
* @throws view length must be a positive multiple of `16`
13181318
* @throws must provide sufficient memory to accommodate byte offset and view length requirements
13191319
* @throws an iterator must return either a two element array containing real and imaginary components or a complex number
13201320
* @returns complex number array
@@ -1456,12 +1456,12 @@ interface Complex128ArrayConstructor {
14561456
* @param arg - length, typed array, array-like object, or buffer
14571457
* @param byteOffset - byte offset (default: 0)
14581458
* @param length - view length
1459-
* @throws ArrayBuffer byte length must be a multiple of `8`
1459+
* @throws ArrayBuffer byte length must be a multiple of `16`
14601460
* @throws array-like object and typed array input arguments must have a length which is a multiple of two
14611461
* @throws if provided only a single argument, must provide a valid argument
14621462
* @throws byte offset must be a nonnegative integer
1463-
* @throws byte offset must be a multiple of `8`
1464-
* @throws view length must be a positive multiple of `8`
1463+
* @throws byte offset must be a multiple of `16`
1464+
* @throws view length must be a positive multiple of `16`
14651465
* @throws must provide sufficient memory to accommodate byte offset and view length requirements
14661466
* @throws an iterator must return either a two element array containing real and imaginary components or a complex number
14671467
* @returns complex number array

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"@stdlib/strided-base-reinterpret-complex64": "^0.2.2",
6464
"@stdlib/string-format": "^0.2.3",
6565
"@stdlib/symbol-iterator": "^0.2.3",
66-
"@stdlib/types": "^0.4.3",
66+
"@stdlib/types": "^0.5.1",
6767
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.4",
6868
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3",
6969
"@stdlib/error-tools-fmtprodmsg": "^0.2.3"

0 commit comments

Comments
 (0)