Skip to content

Commit d39d5db

Browse files
committed
Auto-generated commit
1 parent 2d94cbb commit d39d5db

5 files changed

Lines changed: 18 additions & 3 deletions

File tree

‎.github/.keepalive‎

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

‎.gitignore‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,3 +202,4 @@ jsconfig.json
202202
####################
203203
CLAUDE.md
204204
GEMINI.md
205+
.claude/

‎CHANGELOG.md‎

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

7-
## Unreleased (2026-08-04)
7+
## Unreleased (2026-09-23)
8+
9+
<section class="features">
10+
11+
### Features
12+
13+
- [`e6ef385`](https://github.com/stdlib-js/stdlib/commit/e6ef3852ca447bfd266c34dc8250b66c261a2096) - add float16 dtype support to `array/base/assert/*` [(#15453)](https://github.com/stdlib-js/stdlib/pull/15453)
14+
15+
</section>
16+
17+
<!-- /.features -->
818

919
<section class="commits">
1020

1121
### Commits
1222

1323
<details>
1424

25+
- [`e6ef385`](https://github.com/stdlib-js/stdlib/commit/e6ef3852ca447bfd266c34dc8250b66c261a2096) - **feat:** add float16 dtype support to `array/base/assert/*` [(#15453)](https://github.com/stdlib-js/stdlib/pull/15453) _(by Gururaj Gurram)_
1526
- [`394c99f`](https://github.com/stdlib-js/stdlib/commit/394c99ff634519d6219987acc2fd7bcca0399b55) - **docs:** add missing stub sections [(#11871)](https://github.com/stdlib-js/stdlib/pull/11871) _(by Philipp Burckhardt)_
1627
- [`b721461`](https://github.com/stdlib-js/stdlib/commit/b721461895b04dd66f0915c76347244a7cc56148) - **docs:** revert style changes _(by Athan Reines)_
1728
- [`3024bb3`](https://github.com/stdlib-js/stdlib/commit/3024bb37f70bf55295d9c4bf81107ff57c15ff8a) - **docs:** fix section comments and lint errors in `array` and `assert` READMEs _(by Philipp Burckhardt)_
@@ -26,9 +37,10 @@
2637

2738
### Contributors
2839

29-
A total of 2 people contributed to this release. Thank you to the following contributors:
40+
A total of 3 people contributed to this release. Thank you to the following contributors:
3041

3142
- Athan Reines
43+
- Gururaj Gurram
3244
- Philipp Burckhardt
3345

3446
</section>

‎package.json‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"@stdlib/array-bool": "^0.1.2",
4444
"@stdlib/array-complex128": "^0.3.2",
4545
"@stdlib/array-complex64": "^0.3.2",
46+
"@stdlib/array-float16": "github:stdlib-js/array-float16#main",
4647
"@stdlib/array-float32": "^0.2.3",
4748
"@stdlib/array-float64": "^0.2.3",
4849
"@stdlib/array-int16": "^0.2.3",

‎test/test.js‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ var Uint16Array = require( '@stdlib/array-uint16' );
3030
var Int32Array = require( '@stdlib/array-int32' );
3131
var Uint32Array = require( '@stdlib/array-uint32' );
3232
var Float32Array = require( '@stdlib/array-float32' );
33+
var Float16Array = require( '@stdlib/array-float16' );
3334
var Float64Array = require( '@stdlib/array-float64' );
3435
var Complex128Array = require( '@stdlib/array-complex128' );
3536
var Complex64Array = require( '@stdlib/array-complex64' );
@@ -73,6 +74,7 @@ tape( 'the function returns `false` if not provided a BooleanArray', function te
7374
{ 'length': 10 }, // eslint-disable-line object-curly-newline
7475
new Float64Array( 10 ),
7576
new Float32Array( 10 ),
77+
new Float16Array( 10 ),
7678
new Int32Array( 10 ),
7779
new Uint32Array( 10 ),
7880
new Int16Array( 10 ),

0 commit comments

Comments
 (0)