Skip to content

Commit 0ae83a1

Browse files
committed
Auto-generated commit
1 parent a3e6a84 commit 0ae83a1

File tree

2 files changed

+30
-1
lines changed

2 files changed

+30
-1
lines changed

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2024-06-05)
7+
## Unreleased (2024-06-06)
88

99
<section class="packages">
1010

@@ -1209,6 +1209,7 @@ This release closes the following issue:
12091209

12101210
##### Features
12111211

1212+
- [`31f2c1a`](https://github.com/stdlib-js/stdlib/commit/31f2c1a8c77a86aac05815d89f158febe8a37611) - add boolean dtype support in `array/mostly-safe-casts` [(#2310)](https://github.com/stdlib-js/stdlib/pull/2310)
12121213
- [`b268a6f`](https://github.com/stdlib-js/stdlib/commit/b268a6fa08b67895ed1f00ea743e387aba451880) - add `array/mostly-safe-casts`
12131214

12141215
</section>
@@ -1635,6 +1636,7 @@ A total of 13 people contributed to this release. Thank you to the following con
16351636

16361637
<details>
16371638

1639+
- [`31f2c1a`](https://github.com/stdlib-js/stdlib/commit/31f2c1a8c77a86aac05815d89f158febe8a37611) - **feat:** add boolean dtype support in `array/mostly-safe-casts` [(#2310)](https://github.com/stdlib-js/stdlib/pull/2310) _(by Jaysukh Makvana, Athan Reines)_
16381640
- [`40da309`](https://github.com/stdlib-js/stdlib/commit/40da3097c6ffaed4cd9284d6cdeff8bf11786553) - **feat:** add `map` method to `array/bool` [(#2292)](https://github.com/stdlib-js/stdlib/pull/2292) _(by Jaysukh Makvana, Athan Reines)_
16391641
- [`3edcfe5`](https://github.com/stdlib-js/stdlib/commit/3edcfe5d814fd12a56dbe492ddc78663721f5acd) - **feat:** update namespace TypeScript declarations [(#2303)](https://github.com/stdlib-js/stdlib/pull/2303) _(by stdlib-bot, Athan Reines)_
16401642
- [`96e896a`](https://github.com/stdlib-js/stdlib/commit/96e896a39be08912b2e06dfb6b671ec13d042412) - **feat:** add support for boolean array indices _(by Athan Reines)_

mostly-safe-casts/lib/data.json

+27
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"uint8c": 0,
1212
"complex128": 1,
1313
"complex64": 1,
14+
"bool": 0,
1415
"generic": 1
1516
},
1617
"float32": {
@@ -25,6 +26,7 @@
2526
"uint8c": 0,
2627
"complex128": 1,
2728
"complex64": 1,
29+
"bool": 0,
2830
"generic": 1
2931
},
3032
"int32": {
@@ -39,6 +41,7 @@
3941
"uint8c": 0,
4042
"complex128": 1,
4143
"complex64": 0,
44+
"bool": 0,
4245
"generic": 1
4346
},
4447
"int16": {
@@ -53,6 +56,7 @@
5356
"uint8c": 0,
5457
"complex128": 1,
5558
"complex64": 1,
59+
"bool": 0,
5660
"generic": 1
5761
},
5862
"int8": {
@@ -67,6 +71,7 @@
6771
"uint8c": 0,
6872
"complex128": 1,
6973
"complex64": 1,
74+
"bool": 0,
7075
"generic": 1
7176
},
7277
"uint32": {
@@ -81,6 +86,7 @@
8186
"uint8c": 0,
8287
"complex128": 1,
8388
"complex64": 0,
89+
"bool": 0,
8490
"generic": 1
8591
},
8692
"uint16": {
@@ -95,6 +101,7 @@
95101
"uint8c": 0,
96102
"complex128": 1,
97103
"complex64": 1,
104+
"bool": 0,
98105
"generic": 1
99106
},
100107
"uint8": {
@@ -109,6 +116,7 @@
109116
"uint8c": 1,
110117
"complex128": 1,
111118
"complex64": 1,
119+
"bool": 0,
112120
"generic": 1
113121
},
114122
"uint8c": {
@@ -123,6 +131,7 @@
123131
"uint8c": 1,
124132
"complex128": 1,
125133
"complex64": 1,
134+
"bool": 0,
126135
"generic": 1
127136
},
128137
"complex128": {
@@ -137,6 +146,7 @@
137146
"uint8c": 0,
138147
"complex128": 1,
139148
"complex64": 1,
149+
"bool": 0,
140150
"generic": 1
141151
},
142152
"complex64": {
@@ -151,6 +161,22 @@
151161
"uint8c": 0,
152162
"complex128": 1,
153163
"complex64": 1,
164+
"bool": 0,
165+
"generic": 1
166+
},
167+
"bool": {
168+
"float64": 0,
169+
"float32": 0,
170+
"int32": 0,
171+
"int16": 0,
172+
"int8": 0,
173+
"uint32": 0,
174+
"uint16": 0,
175+
"uint8": 0,
176+
"uint8c": 0,
177+
"complex128": 0,
178+
"complex64": 0,
179+
"bool": 1,
154180
"generic": 1
155181
},
156182
"generic": {
@@ -165,6 +191,7 @@
165191
"uint8c": 0,
166192
"complex128": 0,
167193
"complex64": 0,
194+
"bool": 0,
168195
"generic": 1
169196
}
170197
}

0 commit comments

Comments
 (0)