Skip to content

Commit 574c2a3

Browse files
committed
Auto-generated commit
1 parent 3f29849 commit 574c2a3

File tree

6 files changed

+20
-9
lines changed

6 files changed

+20
-9
lines changed

CHANGELOG.md

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

7-
## Unreleased (2024-09-29)
7+
## Unreleased (2024-11-15)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`c442b93`](https://github.com/stdlib-js/stdlib/commit/c442b93d2ed3af2a2f50402b4b0dc87e9090f596) - add `blas/base/drotm-wasm` [(#3021)](https://github.com/stdlib-js/stdlib/pull/3021)
1314
- [`6f6df5d`](https://github.com/stdlib-js/stdlib/commit/6f6df5d539a8035cb3af7b1ceec0ead1ee943bee) - add `strided/base/strided2object`
1415

1516
</section>
@@ -22,6 +23,7 @@
2223

2324
<details>
2425

26+
- [`c442b93`](https://github.com/stdlib-js/stdlib/commit/c442b93d2ed3af2a2f50402b4b0dc87e9090f596) - **feat:** add `blas/base/drotm-wasm` [(#3021)](https://github.com/stdlib-js/stdlib/pull/3021) _(by Aman Bhansali, Athan Reines)_
2527
- [`2c4e5d8`](https://github.com/stdlib-js/stdlib/commit/2c4e5d824e0c5dc8fd536bf79ff565cee100ce46) - **build:** disable additional lint rule in TS tests _(by Philipp Burckhardt)_
2628
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
2729
- [`ff9fa81`](https://github.com/stdlib-js/stdlib/commit/ff9fa81f917d539f1a11fba5580e1744991a8a11) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_
@@ -38,8 +40,9 @@
3840

3941
### Contributors
4042

41-
A total of 2 people contributed to this release. Thank you to the following contributors:
43+
A total of 3 people contributed to this release. Thank you to the following contributors:
4244

45+
- Aman Bhansali
4346
- Athan Reines
4447
- Philipp Burckhardt
4548

CONTRIBUTORS

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
#
33
# Contributors listed in alphabetical order.
44

5-
Aayush Khanna <[email protected]>
5+
Aayush Khanna <[email protected]>
6+
AbhijitRaut04 <[email protected]>
67
Adarsh Palaskar <[email protected]>
78
Aditya Sapra <[email protected]>
89
AgPriyanshu18 <[email protected]>
@@ -22,12 +23,14 @@ Dan Rose <[email protected]>
2223
Daniel Killenberger <[email protected]>
2324
Daniel Yu <[email protected]>
2425
Debashis Maharana <[email protected]>
26+
Dominic Lim <[email protected]>
2527
Dominik Moritz <[email protected]>
2628
Dorrin Sotoudeh <[email protected]>
2729
EuniceSim142 <[email protected]>
2830
Frank Kovacs <[email protected]>
2931
Golden Kumar <[email protected]>
3032
Gunj Joshi <[email protected]>
33+
Gururaj Gurram <[email protected]>
3134
3235
Harshita Kalani <[email protected]>
3336
Hridyanshu <[email protected]>
@@ -44,6 +47,7 @@ Justin Dennison <[email protected]>
4447
Kaif Mohd <[email protected]>
4548
Karthik Prakash <[email protected]>
4649
50+
Kohantika Nath <[email protected]>
4751
Krishnendu Das <[email protected]>
4852
4953
Manik Sharma <[email protected]>
@@ -65,15 +69,18 @@ Prajwal Kulkarni <[email protected]>
6569
Pranav Goswami <[email protected]>
6670
6771
72+
Pratyush Kumar Chouhan <[email protected]>
6873
6974
Pushpendra Chandravanshi <[email protected]>
75+
7076
Raunak Kumar Gupta <[email protected]>
7177
Rejoan Sardar <[email protected]>
7278
Ricky Reusser <[email protected]>
7379
Ridam Garg <[email protected]>
7480
Robert Gislason <[email protected]>
7581
Roman Stetsyk <[email protected]>
7682
83+
Ruthwik Chikoti <[email protected]>
7784
Ryan Seal <[email protected]>
7885
Sai Srikar Dumpeti <[email protected]>
7986
SarthakPaandey <[email protected]>
@@ -94,6 +101,7 @@ Tudor Pagu <[email protected]>
94101
Tufailahmed Bargir <[email protected]>
95102
Utkarsh <http://[email protected]>
96103
Utkarsh Raj <[email protected]>
104+
UtkershBasnet <[email protected]>
97105
Vaibhav Patel <[email protected]>
98106
Varad Gupta <[email protected]>
99107
Xiaochuan Ye <[email protected]>

dist/index.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ var arraylike2object = require( '@stdlib/array-base-arraylike2object' );
7373
*/
7474
function strided2object( N, x, stride, offset ) {
7575
var obj = arraylike2object( x );
76-
obj.length = N;
76+
obj.length = ( N > 0 ) ? N : 0;
7777
obj.stride = stride;
7878
obj.offset = offset;
7979
return obj;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"dependencies": {
4040
"@stdlib/array-base-arraylike2object": "^0.2.1",
41-
"@stdlib/types": "^0.4.1"
41+
"@stdlib/types": "^0.4.3"
4242
},
4343
"devDependencies": {
4444
"@stdlib/array-base-zeros": "^0.2.2",

0 commit comments

Comments
 (0)