Skip to content

Commit 67bdfc4

Browse files
committed
Auto-generated commit
1 parent 763998b commit 67bdfc4

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
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,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-22)
7+
## Unreleased (2025-09-10)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`5feedbc`](https://github.com/stdlib-js/stdlib/commit/5feedbcf7d1de8ab6259c96fa39a2fdc50e2c895) - **docs:** do not pass in options object to avoid cast error _(by Philipp Burckhardt)_
1516
- [`8a6dbd7`](https://github.com/stdlib-js/stdlib/commit/8a6dbd7bf692bcd9ce166a7370eda0a7410da3b0) - **docs:** fix example code and return annotation values _(by Philipp Burckhardt)_
1617
- [`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
1718
- [`25f29f8`](https://github.com/stdlib-js/stdlib/commit/25f29f85b888fd71646902ad9cda4f5f6aa62eff) - **refactor:** use base assertion utility _(by Athan Reines)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Bruno Fenzl <brunofenzl@gmail.com>
4242
Bryan Elee <rxbryn@gmail.com>
4343
Chinmay Joshi <86140365+JawHawk@users.noreply.github.com>
4444
Christopher Dambamuromo <chridam@gmail.com>
45+
DUDHAT HEMIL PRAVINKUMAR <138382078+Hemil36@users.noreply.github.com>
4546
Dan Rose <danoftheroses@gmail.com>
4647
Daniel Hernandez Gomez <156333015+dhernandeez13@users.noreply.github.com>
4748
Daniel Killenberger <daniel.killenberger@gmail.com>
@@ -65,6 +66,7 @@ Frank Kovacs <fran70kk@gmail.com>
6566
GK Bishnoi <gkishan1kyt@gmail.com>
6667
GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
6768
Gaurav <gaurav70380@gmail.com>
69+
Gaurav Kaushik <144526331+Gauravkaushik-1206@users.noreply.github.com>
6870
Gautam Kaushik <162317291+Kaushikgtm@users.noreply.github.com>
6971
Gautam sharma <gautamkrishnasharma1@gmail.com>
7072
GeoDaoyu <geodaoyu@foxmail.com>

docs/types/index.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,7 @@ interface Options {
5151
* @example
5252
* var array = require( '@stdlib/ndarray-array' );
5353
*
54-
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ], {
55-
* 'dtype': 'float64'
56-
* });
54+
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] );
5755
* // returns <ndarray>
5856
*
5957
* var iter = nditerValues( x );

0 commit comments

Comments
 (0)