Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jul 10, 2024
1 parent 50b3462 commit 2b9c216
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 14 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<section class="release" id="unreleased">

## Unreleased (2024-07-06)
## Unreleased (2024-07-10)

<section class="packages">

Expand Down Expand Up @@ -251,6 +251,28 @@

<!-- /.package -->

<section class="package" id="ndarray-same-kind-casts-unreleased">

#### [@stdlib/ndarray/same-kind-casts](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/ndarray/same-kind-casts)

<details>

<section class="features">

##### Features

- [`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)

</section>

<!-- /.features -->

</details>

</section>

<!-- /.package -->

</section>

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

<details>

- [`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)_
- [`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)_
- [`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)_
- [`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)_
Expand Down
55 changes: 42 additions & 13 deletions same-kind-casts/lib/same_kind_casts.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
"complex128": 1,
"complex64": 0,
"binary": 0,
"generic": 1
"generic": 1,
"bool": 0
},
"float32": {
"float64": 1,
Expand All @@ -27,7 +28,8 @@
"complex128": 1,
"complex64": 1,
"binary": 0,
"generic": 1
"generic": 1,
"bool": 0
},
"int32": {
"float64": 1,
Expand All @@ -42,7 +44,8 @@
"complex128": 1,
"complex64": 0,
"binary": 0,
"generic": 1
"generic": 1,
"bool": 0
},
"int16": {
"float64": 1,
Expand All @@ -57,7 +60,8 @@
"complex128": 1,
"complex64": 1,
"binary": 0,
"generic": 1
"generic": 1,
"bool": 0
},
"int8": {
"float64": 1,
Expand All @@ -72,7 +76,8 @@
"complex128": 1,
"complex64": 1,
"binary": 0,
"generic": 1
"generic": 1,
"bool": 0
},
"uint32": {
"float64": 1,
Expand All @@ -87,7 +92,8 @@
"complex128": 1,
"complex64": 0,
"binary": 0,
"generic": 1
"generic": 1,
"bool": 0
},
"uint16": {
"float64": 1,
Expand All @@ -102,7 +108,8 @@
"complex128": 1,
"complex64": 1,
"binary": 0,
"generic": 1
"generic": 1,
"bool": 0
},
"uint8": {
"float64": 1,
Expand All @@ -117,7 +124,8 @@
"complex128": 1,
"complex64": 1,
"binary": 0,
"generic": 1
"generic": 1,
"bool": 0
},
"uint8c": {
"float64": 1,
Expand All @@ -132,7 +140,8 @@
"complex128": 1,
"complex64": 1,
"binary": 0,
"generic": 1
"generic": 1,
"bool": 0
},
"complex128": {
"float64": 0,
Expand All @@ -147,7 +156,8 @@
"complex128": 1,
"complex64": 1,
"binary": 0,
"generic": 0
"generic": 0,
"bool": 0
},
"complex64": {
"float64": 0,
Expand All @@ -162,7 +172,8 @@
"complex128": 1,
"complex64": 1,
"binary": 0,
"generic": 0
"generic": 0,
"bool": 0
},
"generic": {
"float64": 0,
Expand All @@ -177,7 +188,8 @@
"complex128": 0,
"complex64": 0,
"binary": 0,
"generic": 1
"generic": 1,
"bool": 0
},
"binary": {
"float64": 0,
Expand All @@ -192,6 +204,23 @@
"complex128": 0,
"complex64": 0,
"binary": 1,
"generic": 0
"generic": 0,
"bool": 0
},
"bool": {
"float64": 0,
"float32": 0,
"int32": 0,
"int16": 0,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"complex128": 0,
"complex64": 0,
"binary": 0,
"generic": 1,
"bool": 1
}
}

0 comments on commit 2b9c216

Please sign in to comment.