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 Jun 10, 2024
1 parent 8d0bab6 commit 8bd139b
Show file tree
Hide file tree
Showing 2 changed files with 150 additions and 121 deletions.
4 changes: 3 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-06-09)
## Unreleased (2024-06-10)

<section class="packages">

Expand Down Expand Up @@ -1430,6 +1430,7 @@ This release closes the following issue:

##### Features

- [`84dcb69`](https://github.com/stdlib-js/stdlib/commit/84dcb6972ff346a53f596de5ccc490489c9425ad) - add boolean dtype support in `array/safe-casts` [(#2353)](https://github.com/stdlib-js/stdlib/pull/2353)
- [`a8643cd`](https://github.com/stdlib-js/stdlib/commit/a8643cd81faabbf121f779a2dc6eedc8e0cb1bd7) - support non-string dtype values

</section>
Expand Down Expand Up @@ -1702,6 +1703,7 @@ A total of 13 people contributed to this release. Thank you to the following con

<details>

- [`84dcb69`](https://github.com/stdlib-js/stdlib/commit/84dcb6972ff346a53f596de5ccc490489c9425ad) - **feat:** add boolean dtype support in `array/safe-casts` [(#2353)](https://github.com/stdlib-js/stdlib/pull/2353) _(by Jaysukh Makvana, Athan Reines)_
- [`1b5abe6`](https://github.com/stdlib-js/stdlib/commit/1b5abe6cb97ca371aeeae5ef5e39e9ef20898e52) - **chore:** update package meta data [(#2344)](https://github.com/stdlib-js/stdlib/pull/2344) _(by stdlib-bot, Athan Reines)_
- [`c3ebfa8`](https://github.com/stdlib-js/stdlib/commit/c3ebfa80e311db338b171ebf8eb5f46bc66e9bf6) - **docs:** update namespace table of contents and address spelling errors _(by Philipp Burckhardt)_
- [`26681a0`](https://github.com/stdlib-js/stdlib/commit/26681a00adf94037d357eaebf842af2c454b06e3) - **feat:** add boolean dtype support in `array/dtype` [(#2306)](https://github.com/stdlib-js/stdlib/pull/2306) _(by Jaysukh Makvana, Athan Reines)_
Expand Down
267 changes: 147 additions & 120 deletions safe-casts/lib/safe_casts.json
Original file line number Diff line number Diff line change
@@ -1,130 +1,139 @@
{
"float64": {
"float64": 1,
"float32": 0,
"int32": 0,
"int16": 0,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"float64": {
"float64": 1,
"float32": 0,
"int32": 0,
"int16": 0,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"complex128": 1,
"complex64": 0,
"generic": 1
},
"float32": {
"float64": 1,
"float32": 1,
"int32": 0,
"int16": 0,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"bool": 0,
"generic": 1
},
"float32": {
"float64": 1,
"float32": 1,
"int32": 0,
"int16": 0,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"complex128": 1,
"complex64": 1,
"generic": 1
},
"int32": {
"float64": 1,
"float32": 0,
"int32": 1,
"int16": 0,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"bool": 0,
"generic": 1
},
"int32": {
"float64": 1,
"float32": 0,
"int32": 1,
"int16": 0,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"complex128": 1,
"complex64": 0,
"generic": 1
},
"int16": {
"float64": 1,
"float32": 1,
"int32": 1,
"int16": 1,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"bool": 0,
"generic": 1
},
"int16": {
"float64": 1,
"float32": 1,
"int32": 1,
"int16": 1,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"complex128": 1,
"complex64": 1,
"generic": 1
},
"int8": {
"float64": 1,
"float32": 1,
"int32": 1,
"int16": 1,
"int8": 1,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"bool": 0,
"generic": 1
},
"int8": {
"float64": 1,
"float32": 1,
"int32": 1,
"int16": 1,
"int8": 1,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"complex128": 1,
"complex64": 1,
"generic": 1
},
"uint32": {
"float64": 1,
"float32": 0,
"int32": 0,
"int16": 0,
"int8": 0,
"uint32": 1,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"bool": 0,
"generic": 1
},
"uint32": {
"float64": 1,
"float32": 0,
"int32": 0,
"int16": 0,
"int8": 0,
"uint32": 1,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"complex128": 1,
"complex64": 0,
"generic": 1
},
"uint16": {
"float64": 1,
"float32": 1,
"int32": 1,
"int16": 0,
"int8": 0,
"uint32": 1,
"uint16": 1,
"uint8": 0,
"uint8c": 0,
"bool": 0,
"generic": 1
},
"uint16": {
"float64": 1,
"float32": 1,
"int32": 1,
"int16": 0,
"int8": 0,
"uint32": 1,
"uint16": 1,
"uint8": 0,
"uint8c": 0,
"complex128": 1,
"complex64": 1,
"generic": 1
},
"uint8": {
"float64": 1,
"float32": 1,
"int32": 1,
"int16": 1,
"int8": 0,
"uint32": 1,
"uint16": 1,
"uint8": 1,
"uint8c": 1,
"bool": 0,
"generic": 1
},
"uint8": {
"float64": 1,
"float32": 1,
"int32": 1,
"int16": 1,
"int8": 0,
"uint32": 1,
"uint16": 1,
"uint8": 1,
"uint8c": 1,
"complex128": 1,
"complex64": 1,
"generic": 1
},
"uint8c": {
"float64": 1,
"float32": 1,
"int32": 1,
"int16": 1,
"int8": 0,
"uint32": 1,
"uint16": 1,
"uint8": 1,
"uint8c": 1,
"bool": 0,
"generic": 1
},
"uint8c": {
"float64": 1,
"float32": 1,
"int32": 1,
"int16": 1,
"int8": 0,
"uint32": 1,
"uint16": 1,
"uint8": 1,
"uint8c": 1,
"complex128": 1,
"complex64": 1,
"generic": 1
},
"bool": 0,
"generic": 1
},
"complex128": {
"float64": 0,
"float32": 0,
Expand All @@ -137,6 +146,7 @@
"uint8c": 0,
"complex128": 1,
"complex64": 0,
"bool": 0,
"generic": 1
},
"complex64": {
Expand All @@ -151,20 +161,37 @@
"uint8c": 0,
"complex128": 1,
"complex64": 1,
"bool": 0,
"generic": 1
},
"bool": {
"float64": 0,
"float32": 0,
"int32": 0,
"int16": 0,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"complex128": 0,
"complex64": 0,
"bool": 1,
"generic": 1
},
"generic": {
"float64": 0,
"float32": 0,
"int32": 0,
"int16": 0,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"generic": {
"float64": 0,
"float32": 0,
"int32": 0,
"int16": 0,
"int8": 0,
"uint32": 0,
"uint16": 0,
"uint8": 0,
"uint8c": 0,
"complex128": 0,
"complex64": 0,
"generic": 1
}
"bool": 0,
"generic": 1
}
}

0 comments on commit 8bd139b

Please sign in to comment.