From 20aef2d72f9c13c80efe6f9ee0bafa415996a043 Mon Sep 17 00:00:00 2001 From: Jake VanderPlas Date: Tue, 19 Sep 2023 12:33:43 -0700 Subject: [PATCH] Bump version to v0.3.0 --- CHANGELOG.md | 2 ++ ml_dtypes/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d7fc4b2..70e69a68 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`; 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"