Skip to content

Commit c76f2a7

Browse files
committed
Auto-generated commit
1 parent 867fec5 commit c76f2a7

File tree

6 files changed

+24
-19
lines changed

6 files changed

+24
-19
lines changed

CHANGELOG.md

Lines changed: 3 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-07-29)
7+
## Unreleased (2025-08-05)
88

99
<section class="features">
1010

@@ -246,6 +246,8 @@ A total of 32 issues were closed in this release:
246246

247247
<details>
248248

249+
- [`8a0618b`](https://github.com/stdlib-js/stdlib/commit/8a0618bf4e79916cd2e32e9159e0299b7c1bcf34) - **style:** fix indentation in JSON files _(by Philipp Burckhardt)_
250+
- [`2c927e4`](https://github.com/stdlib-js/stdlib/commit/2c927e403da0ed8841b6ce19296262a88c9856e0) - **docs:** fix example code in TS declaration files _(by Philipp Burckhardt)_
249251
- [`c8567dc`](https://github.com/stdlib-js/stdlib/commit/c8567dc46194708845553af0631c54cc81b25170) - **feat:** add `rekeyViews` to namespace _(by Athan Reines)_
250252
- [`768090d`](https://github.com/stdlib-js/stdlib/commit/768090def5056f9bb863878fd253b35e23a1f786) - **feat:** add `array/base/rekey-views` _(by Athan Reines)_
251253
- [`d3b0f25`](https://github.com/stdlib-js/stdlib/commit/d3b0f251b37fdc27cd3a02ac794dddba0b2f7b36) - **fix:** correct loop bounds in toJSON method for `nested2views` _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Abdelrahman Samir <[email protected]>
99
Abdul Kaium <[email protected]>
1010
Abhay Punia <[email protected]>
1111
Abhijit Raut <[email protected]>
12+
Abhishek G <[email protected]>
1213
Abhishek Jain <[email protected]>
1314
Adarsh Palaskar <[email protected]>
1415
Aditya Sapra <[email protected]>
@@ -119,6 +120,7 @@ Momtchil Momtchev <[email protected]>
119120
Muhammad Haris <[email protected]>
120121
Muhammad Taaha Tariq <[email protected]>
121122
Muhmmad Saad <[email protected]>
123+
NEEKUorAAYUSH <[email protected]>
122124
Naresh Jagadeesan <[email protected]>
123125
Naveen Kumar <[email protected]>
124126
Neeraj Pathak <[email protected]>
@@ -199,6 +201,7 @@ Utkarsh <http://[email protected]>
199201
Utkarsh Raj <[email protected]>
200202
UtkershBasnet <[email protected]>
201203
Vaibhav Patel <[email protected]>
204+
Vansh Choudhary <[email protected]>
202205
Vara Rahul Rajana <[email protected]>
203206
Varad Gupta <[email protected]>
204207
Vinit Pandit <[email protected]>

byte-orders/lib/orders.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[
2-
"little-endian",
3-
"big-endian"
2+
"little-endian",
3+
"big-endian"
44
]

docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ interface Namespace {
690690
* @returns output array
691691
*
692692
* @example
693-
* var x = ns.scalar2array( 1.0, generic' );
693+
* var x = ns.scalar2array( 1.0, 'generic' );
694694
* // returns [ 1.0 ]
695695
*/
696696
scalar2array: typeof scalar2array;

from-scalar/docs/types/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ declare function scalar2array( value: number, dtype: 'int16' ): Int16Array;
138138
* @returns output array
139139
*
140140
* @example
141-
* var x = scalar2array( 1, int8' }
141+
* var x = scalar2array( 1, 'int8' }
142142
* // returns <Int8Array>[ 1 ]
143143
*/
144144
declare function scalar2array( value: number, dtype: 'int8' ): Int8Array;
@@ -151,7 +151,7 @@ declare function scalar2array( value: number, dtype: 'int8' ): Int8Array;
151151
* @returns output array
152152
*
153153
* @example
154-
* var x = scalar2array( 1, uint32' );
154+
* var x = scalar2array( 1, 'uint32' );
155155
* // returns <Uint32Array>[ 1 ]
156156
*/
157157
declare function scalar2array( value: number, dtype: 'uint32' ): Uint32Array;
@@ -164,7 +164,7 @@ declare function scalar2array( value: number, dtype: 'uint32' ): Uint32Array;
164164
* @returns output array
165165
*
166166
* @example
167-
* var x = scalar2array( 1, uint16' );
167+
* var x = scalar2array( 1, 'uint16' );
168168
* // returns <Uint16Array>[ 1 ]
169169
*/
170170
declare function scalar2array( value: number, dtype: 'uint16' ): Uint16Array;
@@ -203,7 +203,7 @@ declare function scalar2array( value: number, dtype: 'uint8c' ): Uint8ClampedArr
203203
* @returns output array
204204
*
205205
* @example
206-
* var x = scalar2array( 1.0, generic' );
206+
* var x = scalar2array( 1.0, 'generic' );
207207
* // returns [ 1.0 ]
208208
*/
209209
declare function scalar2array<T = unknown>( value: T, dtype: 'generic' ): Array<T>;
@@ -282,7 +282,7 @@ declare function scalar2array( value: Complex128 | ComplexLike ): Complex128Arra
282282
* @returns output array
283283
*
284284
* @example
285-
* var x = scalar2array( 1.0, generic' );
285+
* var x = scalar2array( 1.0, 'generic' );
286286
* // returns [ 1.0 ]
287287
*/
288288
declare function scalar2array<T = unknown>( value: T, dtype?: DataType ): Array<T>;

pool/lib/bytes_per_element.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"bool": 1,
3-
"float64": 8,
4-
"float32": 4,
5-
"int16": 2,
6-
"int32": 4,
7-
"int8": 1,
8-
"uint16": 2,
9-
"uint32": 4,
10-
"uint8": 1,
11-
"uint8c": 1,
2+
"bool": 1,
3+
"float64": 8,
4+
"float32": 4,
5+
"int16": 2,
6+
"int32": 4,
7+
"int8": 1,
8+
"uint16": 2,
9+
"uint32": 4,
10+
"uint8": 1,
11+
"uint8c": 1,
1212
"complex64": 8,
1313
"complex128": 16
1414
}

0 commit comments

Comments
 (0)