Skip to content

Commit 9fd1a48

Browse files
author
The ml_dtypes Authors
committed
Merge pull request #336 from jakevdp:prep-for-release
PiperOrigin-RevId: 833491095
2 parents 375033e + 95bbfb9 commit 9fd1a48

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,13 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
2323

2424
## [Unreleased]
2525

26+
## [0.5.4] - 2025-11-17
27+
2628
* We now register casts from int2 and int4 to all of the custom float types,
2729
except `float6_e2m3fn` and `float8_e8m0fnu`.
30+
* Custom floats may now be constructed from Python integers ([#317](https://github.com/jax-ml/ml_dtypes/issues/317))
31+
* Fixed bug in byte-swap operation for custom floats ([#311](https://github.com/jax-ml/ml_dtypes/pull/311))
32+
* Wheels now support Python 3.14 free threading on Windows.
2833

2934
## [0.5.3] - 2025-07-29
3035

@@ -105,7 +110,9 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
105110

106111
* Initial release
107112

108-
[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.1...HEAD
113+
[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.4...HEAD
114+
[0.5.4]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.3....v0.5.4
115+
[0.5.3]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.2....v0.5.3
109116
[0.5.2]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.1....v0.5.2
110117
[0.5.1]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.0....v0.5.1
111118
[0.5.0]: https://github.com/jax-ml/ml_dtypes/compare/v0.4.0....v0.5.0

ml_dtypes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.5.3"
15+
__version__ = "0.5.4"
1616
__all__ = [
1717
"__version__",
1818
"bfloat16",

0 commit comments

Comments
 (0)