File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff line change 11[project ]
22name = " 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__
44description = " "
55readme = " README.md"
66requires-python = " >=3.9"
You can’t perform that action at this time.
0 commit comments