Skip to content

Commit b169bd9

Browse files
committed
Auto-generated commit
1 parent ef79309 commit b169bd9

File tree

7 files changed

+16
-8
lines changed

7 files changed

+16
-8
lines changed

.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,12 @@ jsconfig.json
188188
# Other editor files #
189189
######################
190190
.idea/
191-
192-
# Cursor #
193-
##########
191+
.cursor
194192
.cursorignore
193+
.windsurfrules
194+
.clinerules
195+
196+
# AI coding agents #
197+
####################
198+
CLAUDE.md
199+
GEMINI.md

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-31)
7+
## Unreleased (2025-09-11)
88

99
<section class="features">
1010

@@ -52,6 +52,7 @@ This release closes the following issue:
5252

5353
<details>
5454

55+
- [`07e8560`](https://github.com/stdlib-js/stdlib/commit/07e85603f66b82d2152fc36127679235a88580d1) - **docs:** fix example code and return annotation values _(by Philipp Burckhardt)_
5556
- [`132f36a`](https://github.com/stdlib-js/stdlib/commit/132f36a977386ab096662902eb7830fe6b140c76) - **feat:** update error databases [(#7991)](https://github.com/stdlib-js/stdlib/pull/7991) _(by stdlib-bot)_
5657
- [`d9443db`](https://github.com/stdlib-js/stdlib/commit/d9443dbda63b97e6f17b991f17cac96e7a8b8e8c) - **feat:** update error databases [(#7943)](https://github.com/stdlib-js/stdlib/pull/7943) _(by stdlib-bot)_
5758
- [`7add020`](https://github.com/stdlib-js/stdlib/commit/7add0201c13e56a0381926ccfd4073c84eaf2ed4) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <[email protected]>
4242
Bryan Elee <[email protected]>
4343
Chinmay Joshi <[email protected]>
4444
Christopher Dambamuromo <[email protected]>
45+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
4546
4647
Daniel Hernandez Gomez <[email protected]>
4748
Daniel Killenberger <[email protected]>
@@ -65,6 +66,7 @@ Frank Kovacs <[email protected]>
6566
GK Bishnoi <[email protected]>
6667
GURU PRASAD SHARMA <[email protected]>
6768
69+
Gaurav Kaushik <[email protected]>
6870
Gautam Kaushik <[email protected]>
6971
Gautam sharma <[email protected]>
7072

tools/fmtprodmsg-factory/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ interface Options {
5858
* 'url': 'https://stdlib.io/error-decoder.html'
5959
* };
6060
*
61-
* var fcn = factory( opts );
61+
* var fcn = fmtprodmsgFactory( opts );
6262
* // returns <Function>
6363
*/
6464
declare function fmtprodmsgFactory( options?: Options ): FormatProdErrorMsgFunction;

tools/msg2id/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @example
2828
* var v = msg2id( 'invalid option. `%s` option must be an array. Option: `%s`.' );
29-
* // returns '8t'
29+
* // returns '8Z'
3030
*/
3131
declare function msg2id( msg: string ): string | null;
3232

tools/msg2id/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var db;
4343
*
4444
* @example
4545
* var v = msg2id( 'invalid option. `%s` option must be an array. Option: `%s`.' );
46-
* // returns 'GX'
46+
* // returns '8Z'
4747
*/
4848
function msg2id( msg ) {
4949
if ( !isString( msg ) ) {

tools/pkg2id/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*
2727
* @example
2828
* var v = pkg2id( '@stdlib/math/base/special/sin' );
29-
* // returns '0H5'
29+
* // returns '0YK'
3030
*/
3131
declare function pkg2id( pkg: string ): string | null;
3232

0 commit comments

Comments
 (0)