Skip to content

Commit 560866c

Browse files
author
The ml_dtypes Authors
committed
Merge pull request #249 from hawkinsp:release
PiperOrigin-RevId: 712546792
2 parents 47ac443 + c26c582 commit 560866c

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

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

2424
## [Unreleased]
2525

26+
## [0.5.1] - 2025-01-06
27+
28+
* Fixed sign bit handling for float4 and float6 types.
29+
* Wheels now support Python 3.13 free-threading.
30+
* Wheels now support the Power architecture.
31+
2632
## [0.5.0] - 2024-09-13
2733

2834
* Added new 8-bit float types following IEEE 754 convention:
@@ -80,7 +86,8 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
8086

8187
* Initial release
8288

83-
[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.0...HEAD
89+
[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.1...HEAD
90+
[0.5.1]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.0....v0.5.1
8491
[0.5.0]: https://github.com/jax-ml/ml_dtypes/compare/v0.4.0....v0.5.0
8592
[0.4.1]: https://github.com/jax-ml/ml_dtypes/compare/v0.4.0....v0.4.1
8693
[0.4.0]: https://github.com/jax-ml/ml_dtypes/compare/v0.4.0b1....v0.4.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.0" # Keep in sync with pyproject.toml:version
15+
__version__ = "0.5.1" # Keep in sync with pyproject.toml:version
1616
__all__ = [
1717
"__version__",
1818
"bfloat16",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "ml_dtypes"
3-
version = "0.5.0" # Keep in sync with ml_dtypes/__init__.py:__version__
3+
version = "0.5.1" # Keep in sync with ml_dtypes/__init__.py:__version__
44
description = ""
55
readme = "README.md"
66
requires-python = ">=3.9"

0 commit comments

Comments
 (0)