Skip to content

Commit 0a2d827

Browse files
committed
Auto-generated commit
1 parent 606d7d6 commit 0a2d827

6 files changed

Lines changed: 25 additions & 11 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
- [`24634ce`](https://github.com/stdlib-js/stdlib/commit/24634ceba68fe9e1f0ebf700a9a8b0fdc0c2902b) - **test:** fix `Uint8Array` import in `array/bool` [(#12063)](https://github.com/stdlib-js/stdlib/pull/12063) _(by Karan Anand)_
1617
- [`3b764ec`](https://github.com/stdlib-js/stdlib/commit/3b764ec4b17ebce14902ac68a42bc5df62c3aef5) - **docs:** remove stray console.log _(by Athan Reines)_
1718
- [`f101dfa`](https://github.com/stdlib-js/stdlib/commit/f101dfa3d4cdd280ab58690114862ab15e8993ef) - **style:** fix line wrapping and remove trailing whitespace _(by Athan Reines)_
@@ -27,10 +28,11 @@
2728

2829
### Contributors
2930

30-
A total of 3 people contributed to this release. Thank you to the following contributors:
31+
A total of 4 people contributed to this release. Thank you to the following contributors:
3132

3233
- Athan Reines
3334
- Karan Anand
35+
- Philipp Burckhardt
3436
- Shubham
3537

3638
</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: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ declare class BooleanArray implements BooleanArrayInterface {
339339
* Returns an array element located at integer position (index) `i`, with support for both nonnegative and negative integer indices.
340340
*
341341
* @param i - element index
342-
* @throws index argument must be a integer
342+
* @throws index argument must be an integer
343343
* @returns array element
344344
*
345345
* @example
@@ -660,9 +660,6 @@ declare class BooleanArray implements BooleanArrayInterface {
660660
* arr.set( true, 2 );
661661
*
662662
* arr.forEach( log );
663-
* // => 0: true
664-
* // => 1: false
665-
* // => 2: true
666663
*/
667664
forEach<U = unknown>( fcn: Callback<U>, thisArg?: ThisParameterType<Callback<U>> ): void;
668665

@@ -1122,7 +1119,7 @@ declare class BooleanArray implements BooleanArrayInterface {
11221119
*
11231120
* arr.set( true, 0 );
11241121
* arr.set( false, 1 );
1125-
* arr.set( true, 1 );
1122+
* arr.set( true, 2 );
11261123
*
11271124
* var str = arr.toLocaleString();
11281125
* // returns 'true,false,true'
@@ -1181,7 +1178,7 @@ declare class BooleanArray implements BooleanArrayInterface {
11811178
* arr.set( false, 1 );
11821179
* arr.set( true, 2 );
11831180
*
1184-
* var out = arr.sort( compare );
1181+
* var out = arr.toSorted( compare );
11851182
* // returns <BooleanArray>
11861183
*
11871184
* var v = out.get( 0 );
@@ -1524,3 +1521,5 @@ declare var ctor: BooleanArrayConstructor;
15241521
// EXPORTS //
15251522

15261523
export = ctor;
1524+
1525+
// eslint-doctest-alias: BooleanArray

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"@stdlib/math-base-special-floor": "^0.2.4",
5555
"@stdlib/string-format": "^0.2.3",
5656
"@stdlib/symbol-iterator": "^0.2.3",
57-
"@stdlib/types": "^0.4.3",
57+
"@stdlib/types": "^0.5.1",
5858
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.4",
5959
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3",
6060
"@stdlib/error-tools-fmtprodmsg": "^0.2.3"

0 commit comments

Comments
 (0)