Skip to content

Commit 540a9d7

Browse files
committed
Auto-generated commit
1 parent 04a9daf commit 540a9d7

File tree

6 files changed

+21
-10
lines changed

6 files changed

+21
-10
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

.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: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

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

99
<section class="features">
1010

@@ -22,6 +22,8 @@
2222

2323
<details>
2424

25+
- [`5feedbc`](https://github.com/stdlib-js/stdlib/commit/5feedbcf7d1de8ab6259c96fa39a2fdc50e2c895) - **docs:** do not pass in options object to avoid cast error _(by Philipp Burckhardt)_
26+
- [`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_
2527
- [`2825b42`](https://github.com/stdlib-js/stdlib/commit/2825b42e8cd7483d15dfed1c6b389bfcb86d7ca0) - **docs:** update related packages sections [(#3898)](https://github.com/stdlib-js/stdlib/pull/3898) _(by stdlib-bot)_
2628
- [`37ef5f4`](https://github.com/stdlib-js/stdlib/commit/37ef5f4f43d4fe03643b693a40b166420cbb07fd) - **refactor:** use dedicated array utility _(by Athan Reines)_
2729
- [`6dce19b`](https://github.com/stdlib-js/stdlib/commit/6dce19b2a2dfae6159257dab0c52a8421e0861d2) - **feat:** add `ndarray/iter/select-dimension` _(by Athan Reines)_
@@ -36,9 +38,10 @@
3638

3739
### Contributors
3840

39-
A total of 1 person contributed to this release. Thank you to this contributor:
41+
A total of 2 people contributed to this release. Thank you to the following contributors:
4042

4143
- Athan Reines
44+
- Philipp Burckhardt
4245

4346
</section>
4447

CONTRIBUTORS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Abhishek G <[email protected]>
1313
Abhishek Jain <[email protected]>
1414
Adarsh Palaskar <[email protected]>
1515
Aditya Sapra <[email protected]>
16+
Aditya Singh <[email protected]>
1617
Ahmed Atwa <[email protected]>
1718
Ahmed Kashkoush <[email protected]>
1819
Ahmed Khaled <[email protected]>
@@ -41,6 +42,7 @@ Bruno Fenzl <[email protected]>
4142
Bryan Elee <[email protected]>
4243
Chinmay Joshi <[email protected]>
4344
Christopher Dambamuromo <[email protected]>
45+
DUDHAT HEMIL PRAVINKUMAR <[email protected]>
4446
4547
Daniel Hernandez Gomez <[email protected]>
4648
Daniel Killenberger <[email protected]>
@@ -64,6 +66,7 @@ Frank Kovacs <[email protected]>
6466
GK Bishnoi <[email protected]>
6567
GURU PRASAD SHARMA <[email protected]>
6668
69+
Gaurav Kaushik <[email protected]>
6770
Gautam Kaushik <[email protected]>
6871
Gautam sharma <[email protected]>
6972
@@ -121,6 +124,7 @@ Muhammad Haris <[email protected]>
121124
Muhammad Taaha Tariq <[email protected]>
122125
Muhmmad Saad <[email protected]>
123126
NEEKUorAAYUSH <[email protected]>
127+
Nakul Krishnakumar <[email protected]>
124128
Naresh Jagadeesan <[email protected]>
125129
Naveen Kumar <[email protected]>
126130
Neeraj Pathak <[email protected]>
@@ -164,6 +168,7 @@ Ruthwik Chikoti <[email protected]>
164168
Ryan Seal <[email protected]>
165169
Rylan Yang <[email protected]>
166170
SAHIL KUMAR <[email protected]>
171+
SAUJANYA MAGARDE <[email protected]>
167172
SHIVAM YADAV <[email protected]>
168173
Sachin Raj <[email protected]>
169174
Sahil Goyal <[email protected]>
@@ -186,6 +191,7 @@ Sivam Das <[email protected]>
186191
Snehil Shah <[email protected]>
187192
Soumajit Chatterjee <[email protected]>
188193
Spandan Barve <[email protected]>
194+
Srinivas Batthula <[email protected]>
189195
Stephannie Jiménez Gacha <[email protected]>
190196
Suhaib Ilahi <[email protected]>
191197
Suraj Kumar <[email protected]>

docs/types/index.d.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ interface Options {
6363
* var array = require( '@stdlib/ndarray-array' );
6464
* var ndarray2array = require( '@stdlib/ndarray-to-array' );
6565
*
66-
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ], {
67-
* 'dtype': 'float64'
68-
* });
66+
* var x = array( [ [ [ 1, 2 ], [ 3, 4 ] ], [ [ 5, 6 ], [ 7, 8 ] ] ] );
6967
* // returns <ndarray>
7068
*
7169
* var iter = nditerSelectDimension( x, 0 );

test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1068,7 +1068,7 @@ tape( 'if an environment supports `Symbol.iterator`, the returned iterator is it
10681068
t.strictEqual( it1[ '__ITERATOR_SYMBOL__' ].length, 0, 'has zero arity' );
10691069

10701070
it2 = it1[ '__ITERATOR_SYMBOL__' ]();
1071-
t.strictEqual( typeof it2, 'object', 'returns an object' );
1071+
t.strictEqual( typeof it2, 'object', 'returns expected value' );
10721072
t.strictEqual( typeof it2.next, 'function', 'has method' );
10731073
t.strictEqual( typeof it2.return, 'function', 'has method' );
10741074

0 commit comments

Comments
 (0)