Skip to content

Commit 8ec2e71

Browse files
committed
Auto-generated commit
1 parent 2b9c216 commit 8ec2e71

File tree

2 files changed

+65
-13
lines changed

2 files changed

+65
-13
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,28 @@
207207

208208
<!-- /.package -->
209209

210+
<section class="package" id="ndarray-mostly-safe-casts-unreleased">
211+
212+
#### [@stdlib/ndarray/mostly-safe-casts](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/mostly-safe-casts)
213+
214+
<details>
215+
216+
<section class="features">
217+
218+
##### Features
219+
220+
- [`131d649`](https://github.com/stdlib-js/stdlib/commit/131d649c6b22a6247121db1fd380658bf4e83b65) - add boolean dtype support to `ndarray/mostly-safe-casts` [(#2554)](https://github.com/stdlib-js/stdlib/pull/2554)
221+
222+
</section>
223+
224+
<!-- /.features -->
225+
226+
</details>
227+
228+
</section>
229+
230+
<!-- /.package -->
231+
210232
<section class="package" id="ndarray-promotion-rules-unreleased">
211233

212234
#### [@stdlib/ndarray/promotion-rules](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/promotion-rules)
@@ -330,6 +352,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
330352

331353
<details>
332354

355+
- [`131d649`](https://github.com/stdlib-js/stdlib/commit/131d649c6b22a6247121db1fd380658bf4e83b65) - **feat:** add boolean dtype support to `ndarray/mostly-safe-casts` [(#2554)](https://github.com/stdlib-js/stdlib/pull/2554) _(by Jaysukh Makvana, Athan Reines)_
333356
- [`4e860d8`](https://github.com/stdlib-js/stdlib/commit/4e860d827216f445b5abc569a0d7d7d7e61d83f6) - **feat:** add boolean dtype support to `ndarray/same-kind-casts` [(#2555)](https://github.com/stdlib-js/stdlib/pull/2555) _(by Jaysukh Makvana)_
334357
- [`29f4e2b`](https://github.com/stdlib-js/stdlib/commit/29f4e2b3786a8dcec6254b0ab6fb0d69164a673a) - **feat:** add boolean dtype support to `ndarray/promotion-rules` [(#2524)](https://github.com/stdlib-js/stdlib/pull/2524) _(by Jaysukh Makvana)_
335358
- [`41a5c49`](https://github.com/stdlib-js/stdlib/commit/41a5c4954cc46899abfe20145987627b2e86fc94) - **test:** update tests in `ndarray/base/*` to support boolean dtypes [(#2505)](https://github.com/stdlib-js/stdlib/pull/2505) _(by Jaysukh Makvana, Athan Reines)_

mostly-safe-casts/lib/data.json

+42-13
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"complex128": 1,
1313
"complex64": 1,
1414
"binary": 0,
15-
"generic": 1
15+
"generic": 1,
16+
"bool": 0
1617
},
1718
"float32": {
1819
"float64": 1,
@@ -27,7 +28,8 @@
2728
"complex128": 1,
2829
"complex64": 1,
2930
"binary": 0,
30-
"generic": 1
31+
"generic": 1,
32+
"bool": 0
3133
},
3234
"int32": {
3335
"float64": 1,
@@ -42,7 +44,8 @@
4244
"complex128": 1,
4345
"complex64": 0,
4446
"binary": 0,
45-
"generic": 1
47+
"generic": 1,
48+
"bool": 0
4649
},
4750
"int16": {
4851
"float64": 1,
@@ -57,7 +60,8 @@
5760
"complex128": 1,
5861
"complex64": 1,
5962
"binary": 0,
60-
"generic": 1
63+
"generic": 1,
64+
"bool": 0
6165
},
6266
"int8": {
6367
"float64": 1,
@@ -72,7 +76,8 @@
7276
"complex128": 1,
7377
"complex64": 1,
7478
"binary": 0,
75-
"generic": 1
79+
"generic": 1,
80+
"bool": 0
7681
},
7782
"uint32": {
7883
"float64": 1,
@@ -87,7 +92,8 @@
8792
"complex128": 1,
8893
"complex64": 0,
8994
"binary": 0,
90-
"generic": 1
95+
"generic": 1,
96+
"bool": 0
9197
},
9298
"uint16": {
9399
"float64": 1,
@@ -102,7 +108,8 @@
102108
"complex128": 1,
103109
"complex64": 1,
104110
"binary": 0,
105-
"generic": 1
111+
"generic": 1,
112+
"bool": 0
106113
},
107114
"uint8": {
108115
"float64": 1,
@@ -117,7 +124,8 @@
117124
"complex128": 1,
118125
"complex64": 1,
119126
"binary": 0,
120-
"generic": 1
127+
"generic": 1,
128+
"bool": 0
121129
},
122130
"uint8c": {
123131
"float64": 1,
@@ -132,7 +140,8 @@
132140
"complex128": 1,
133141
"complex64": 1,
134142
"binary": 0,
135-
"generic": 1
143+
"generic": 1,
144+
"bool": 0
136145
},
137146
"complex128": {
138147
"float64": 0,
@@ -147,7 +156,8 @@
147156
"complex128": 1,
148157
"complex64": 1,
149158
"binary": 0,
150-
"generic": 1
159+
"generic": 1,
160+
"bool": 0
151161
},
152162
"complex64": {
153163
"float64": 0,
@@ -162,7 +172,8 @@
162172
"complex128": 1,
163173
"complex64": 1,
164174
"binary": 0,
165-
"generic": 1
175+
"generic": 1,
176+
"bool": 0
166177
},
167178
"generic": {
168179
"float64": 0,
@@ -177,7 +188,8 @@
177188
"complex128": 0,
178189
"complex64": 0,
179190
"binary": 0,
180-
"generic": 1
191+
"generic": 1,
192+
"bool": 0
181193
},
182194
"binary": {
183195
"float64": 0,
@@ -192,6 +204,23 @@
192204
"complex128": 0,
193205
"complex64": 0,
194206
"binary": 1,
195-
"generic": 0
207+
"generic": 0,
208+
"bool": 0
209+
},
210+
"bool": {
211+
"float64": 0,
212+
"float32": 0,
213+
"int32": 0,
214+
"int16": 0,
215+
"int8": 0,
216+
"uint32": 0,
217+
"uint16": 0,
218+
"uint8": 0,
219+
"uint8c": 0,
220+
"complex128": 0,
221+
"complex64": 0,
222+
"binary": 0,
223+
"generic": 1,
224+
"bool": 1
196225
}
197226
}

0 commit comments

Comments
 (0)