Skip to content

Commit b3f98c3

Browse files
committed
Auto-generated commit
1 parent f5e2acd commit b3f98c3

4 files changed

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

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`fe7c274`](https://github.com/stdlib-js/stdlib/commit/fe7c2746799f98c42a15f5ab2240676bb9b5987d) - **docs:** fix errors and inconsistencies in `@stdlib/string` TypeScript declarations [(#12390)](https:-/github.com/stdlib-js/stdlib/pull/12390) _(by Philipp Burckhardt, Athan Reines)_
1516
- [`43d1d20`](https://github.com/stdlib-js/stdlib/commit/43d1d20ba3ad56a2d8dc0f9a7dafb279240a976e) - **docs:** align keywords in `string/base` with namespace majority patterns [(#11841)](https://github.com/stdlib-js/stdlib/pull/11841) _(by Philipp Burckhardt)_
1617
- [`aa8d436`](https://github.com/stdlib-js/stdlib/commit/aa8d436e7f5bcab413e101bc9954e9e15d162d5d) - **bench:** refactor to use string interpolation in `@stdlib/string` [(#11456)](https:-/github.com/stdlib-js/stdlib/pull/11456) _(by Uday Kakade, Karan Anand)_
1718

@@ -25,8 +26,9 @@
2526

2627
### Contributors
2728

28-
A total of 3 people contributed to this release. Thank you to the following contributors:
29+
A total of 4 people contributed to this release. Thank you to the following contributors:
2930

31+
- Athan Reines
3032
- Karan Anand
3133
- Philipp Burckhardt
3234
- Uday Kakade

docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ interface Namespace {
10861086
*
10871087
* @example
10881088
* var out = ns.replaceBefore( 'Hello World!', '', 'foo', 0 );
1089-
* // returns 'Hello world!'
1089+
* // returns 'Hello World!'
10901090
*
10911091
* @example
10921092
* var out = ns.replaceBefore( 'Hello World!', 'xyz', 'foo', 0 );
@@ -1301,7 +1301,7 @@ interface Namespace {
13011301
*
13021302
* @example
13031303
* var out = ns.slice( 'foo bar', 2, 7 );
1304-
* // returns 'ar'
1304+
* // returns 'o bar'
13051305
*
13061306
* @example
13071307
* var out = ns.slice( 'foo bar', -1, 7 );

0 commit comments

Comments
 (0)