Skip to content

Commit de525f2

Browse files
committed
Bump version to v0.3.2
1 parent 4fa4da6 commit de525f2

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

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

2424
## [Unreleased]
2525

26+
## [0.3.2] - 2024-01-03
27+
2628
* Fixed spurious invalid value warnings when casting between floating point
2729
types on Mac ARM.
30+
* Remove `pybind11` build requirement
31+
* Update C++ sources for compatibility with NumPy 2.0
2832

2933
## [0.3.1] - 2023-09-22
3034

@@ -52,7 +56,8 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
5256

5357
* Initial release
5458

55-
[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.3.1...HEAD
59+
[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.3.2...HEAD
60+
[0.3.2]: https://github.com/jax-ml/ml_dtypes/compare/v0.3.1...v0.3.2
5661
[0.3.1]: https://github.com/jax-ml/ml_dtypes/compare/v0.3.0...v0.3.1
5762
[0.3.0]: https://github.com/jax-ml/ml_dtypes/compare/v0.2.0...v0.3.0
5863
[0.2.0]: https://github.com/jax-ml/ml_dtypes/compare/v0.1.0...v0.2.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.3.1' # Keep in sync with pyproject.toml:version
15+
__version__ = '0.3.2' # 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.3.1" # Keep in sync with ml_dtypes/__init__.py:__version__
3+
version = "0.3.2" # 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)