Skip to content

Commit

Permalink
Update changelog and version numbers for v0.5.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkinsp committed Jan 6, 2025
1 parent 47ac443 commit c26c582
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):

## [Unreleased]

## [0.5.1] - 2025-01-06

* Fixed sign bit handling for float4 and float6 types.
* Wheels now support Python 3.13 free-threading.
* Wheels now support the Power architecture.

## [0.5.0] - 2024-09-13

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

* Initial release

[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.0...HEAD
[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.1...HEAD
[0.5.1]: https://github.com/jax-ml/ml_dtypes/compare/v0.5.0....v0.5.1
[0.5.0]: https://github.com/jax-ml/ml_dtypes/compare/v0.4.0....v0.5.0
[0.4.1]: https://github.com/jax-ml/ml_dtypes/compare/v0.4.0....v0.4.1
[0.4.0]: https://github.com/jax-ml/ml_dtypes/compare/v0.4.0b1....v0.4.0
Expand Down
2 changes: 1 addition & 1 deletion ml_dtypes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.5.0" # Keep in sync with pyproject.toml:version
__version__ = "0.5.1" # Keep in sync with pyproject.toml:version
__all__ = [
"__version__",
"bfloat16",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "ml_dtypes"
version = "0.5.0" # Keep in sync with ml_dtypes/__init__.py:__version__
version = "0.5.1" # Keep in sync with ml_dtypes/__init__.py:__version__
description = ""
readme = "README.md"
requires-python = ">=3.9"
Expand Down

0 comments on commit c26c582

Please sign in to comment.