Skip to content

Commit 2b9c216

Browse files
committed
Auto-generated commit
1 parent 50b3462 commit 2b9c216

File tree

2 files changed

+66
-14
lines changed

2 files changed

+66
-14
lines changed

Diff for: CHANGELOG.md

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

7-
## Unreleased (2024-07-06)
7+
## Unreleased (2024-07-10)
88

99
<section class="packages">
1010

@@ -251,6 +251,28 @@
251251

252252
<!-- /.package -->
253253

254+
<section class="package" id="ndarray-same-kind-casts-unreleased">
255+
256+
#### [@stdlib/ndarray/same-kind-casts](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/same-kind-casts)
257+
258+
<details>
259+
260+
<section class="features">
261+
262+
##### Features
263+
264+
- [`4e860d8`](https://github.com/stdlib-js/stdlib/commit/4e860d827216f445b5abc569a0d7d7d7e61d83f6) - add boolean dtype support to `ndarray/same-kind-casts` [(#2555)](https://github.com/stdlib-js/stdlib/pull/2555)
265+
266+
</section>
267+
268+
<!-- /.features -->
269+
270+
</details>
271+
272+
</section>
273+
274+
<!-- /.package -->
275+
254276
</section>
255277

256278
<!-- /.packages -->
@@ -308,6 +330,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
308330

309331
<details>
310332

333+
- [`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)_
311334
- [`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)_
312335
- [`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)_
313336
- [`ca687d6`](https://github.com/stdlib-js/stdlib/commit/ca687d6a8d8476309630c5a03f303c2420dc753f) - **feat:** add boolean dtype support to `ndarray/safe-casts` [(#2507)](https://github.com/stdlib-js/stdlib/pull/2507) _(by Jaysukh Makvana, Athan Reines)_

Diff for: same-kind-casts/lib/same_kind_casts.json

+42-13
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
"complex128": 1,
1313
"complex64": 0,
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": 0
159+
"generic": 0,
160+
"bool": 0
151161
},
152162
"complex64": {
153163
"float64": 0,
@@ -162,7 +172,8 @@
162172
"complex128": 1,
163173
"complex64": 1,
164174
"binary": 0,
165-
"generic": 0
175+
"generic": 0,
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)