Skip to content

Commit b54d54c

Browse files
committed
Auto-generated commit
1 parent 110dd9a commit b54d54c

5 files changed

Lines changed: 20 additions & 6 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-18)
7+
## Unreleased (2026-06-10)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`b603d47`](https://github.com/stdlib-js/stdlib/commit/b603d47b873c4c30fb25d3cb2368aafc21444d6b) - **test:** add missing closing brace in TypeScript test files [(#12718)](https://github.com/stdlib-js/stdlib/pull/12718) _(by Philipp Burckhardt)_
1516
- [`f3146ac`](https://github.com/stdlib-js/stdlib/commit/f3146ac8176e5449bd3cdadad3af9570122587d2) - **bench:** refactor to use string interpolation in `@stdlib/random-array` [(#11417)](https://github.com/stdlib-js/stdlib/pull/11417) _(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

docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ import random = require( './index' );
156156
random.factory( { 'name': null } ); // $ExpectError
157157
random.factory( { 'name': [] } ); // $ExpectError
158158
random.factory( { 'name': {} } ); // $ExpectError
159-
random.factory( { 'name': true ); // $ExpectError
159+
random.factory( { 'name': true } ); // $ExpectError
160160
}
161161

162162
// The compiler throws an error if the `factory` method is provided a `seed` option which is not a valid seed...
@@ -176,7 +176,7 @@ import random = require( './index' );
176176
random.factory( { 'state': null } ); // $ExpectError
177177
random.factory( { 'state': [] } ); // $ExpectError
178178
random.factory( { 'state': {} } ); // $ExpectError
179-
random.factory( { 'state': true ); // $ExpectError
179+
random.factory( { 'state': true } ); // $ExpectError
180180
random.factory( { 'state': ( x: number ): number => x } ); // $ExpectError
181181
}
182182

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"@stdlib/random-base-mt19937": "^0.2.3",
4848
"@stdlib/strided-base-nullary": "^0.3.1",
4949
"@stdlib/string-format": "^0.2.3",
50-
"@stdlib/types": "^0.4.3",
50+
"@stdlib/types": "^0.5.1",
5151
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.4",
5252
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.3",
5353
"@stdlib/utils-define-nonenumerable-read-write-accessor": "^0.2.3",

0 commit comments

Comments
 (0)