From 98121bf6f77984732a128041473bad24b3aae34d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Tue, 2 Apr 2024 14:11:42 +0200 Subject: [PATCH] REL: bump version number to 4.3.1 --- doc/source/conf.py | 2 +- pyproject.toml | 2 +- yt/_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 5f06bd51eaa..a39a2897f93 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -70,7 +70,7 @@ # The short X.Y version. version = "4.3" # The full version, including alpha/beta/rc tags. -release = "4.3.0" +release = "4.3.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index eef1bd81141..79a7a45f530 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -13,7 +13,7 @@ build-backend = "setuptools.build_meta:__legacy__" [project] name = "yt" -version = "4.3.0" +version = "4.3.1" description = "An analysis and visualization toolkit for volumetric data" authors = [ { name = "The yt project", email = "yt-dev@python.org" }, diff --git a/yt/_version.py b/yt/_version.py index d6e27d8774e..ee45dbe49ee 100644 --- a/yt/_version.py +++ b/yt/_version.py @@ -7,7 +7,7 @@ "version_info", ] -__version__ = "4.3.0" # keep in sync with pyproject.toml +__version__ = "4.3.1" # keep in sync with pyproject.toml class VersionTuple(NamedTuple):