Skip to content

Commit b745ec2

Browse files
committed
Auto-generated commit
1 parent 3b2150f commit b745ec2

3 files changed

Lines changed: 18 additions & 3 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-03)
7+
## Unreleased (2026-05-31)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`1c95150`](https://github.com/stdlib-js/stdlib/commit/1c9515034550374b8759dcaf681c6cbc99d47030) - **docs:** fix errors and inconsistencies in `@stdlib/utils` TypeScript declarations [(#12391)](https:-/github.com/stdlib-js/stdlib/pull/12391) _(by Philipp Burckhardt, Athan Reines)_
1516
- [`822fadc`](https://github.com/stdlib-js/stdlib/commit/822fadca5619ac17182fad841af43ec6d1cdd81e) - **bench:** refactor to use string interpolation in `utils` [(#11410)](https://github.com/stdlib-js/stdlib/pull/11410) _(by Karan Anand, Athan Reines)_
1617

1718
</details>
@@ -24,10 +25,11 @@
2425

2526
### Contributors
2627

27-
A total of 2 people contributed to this release. Thank you to the following contributors:
28+
A total of 3 people contributed to this release. Thank you to the following contributors:
2829

2930
- Athan Reines
3031
- Karan Anand
32+
- Philipp Burckhardt
3133

3234
</section>
3335

docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ type DoneBinary = ( error: Error | null, ...args: Array<any> ) => void;
7575
type DoneCallback = DoneNullary | DoneUnary | DoneBinary;
7676

7777
/**
78-
* Checks whether an element in a collection passes a test.
78+
* Tests whether to continue invoking a function.
7979
*
8080
* @param i - iteration number (starting from one)
8181
* @param clbk - a callback indicating whether to invoke `fcn`

0 commit comments

Comments
 (0)