From bd7bfe8a491ebae117449327e2ec32dcc9a37faa Mon Sep 17 00:00:00 2001 From: Jake VanderPlas Date: Tue, 19 Sep 2023 12:35:42 -0700 Subject: [PATCH] Bump version to v0.3.0 --- CHANGELOG.md | 5 ++++- ml_dtypes/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d7fc4b2..95d90f69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,8 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`): ## [Unreleased] +## [0.3.0] - 2023-09-19 + * Dropped support for Python 3.8, following [NEP 29]. * Added support for Python 3.12. * Removed deprecated name `ml_dtypes.float8_e4m3b11`; @@ -42,7 +44,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.2.0...HEAD +[Unreleased]: https://github.com/jax-ml/ml_dtypes/compare/v0.3.0...HEAD +[0.2.0]: https://github.com/jax-ml/ml_dtypes/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/jax-ml/ml_dtypes/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/jax-ml/ml_dtypes/releases/tag/v0.1.0 [NEP 29]: https://numpy.org/neps/nep-0029-deprecation_policy.html diff --git a/ml_dtypes/__init__.py b/ml_dtypes/__init__.py index 58c22694..60c297c1 100644 --- a/ml_dtypes/__init__.py +++ b/ml_dtypes/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.0' # Keep in sync with pyproject.toml:version +__version__ = '0.3.0' # Keep in sync with pyproject.toml:version __all__ = [ '__version__', 'bfloat16', diff --git a/pyproject.toml b/pyproject.toml index 583fbac7..65780ed1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ml_dtypes" -version = "0.2.0" # Keep in sync with ml_dtypes/__init__.py:__version__ +version = "0.3.0" # Keep in sync with ml_dtypes/__init__.py:__version__ description = "" readme = "README.md" requires-python = ">=3.9"