From ea0790d43bca6ca056d087091b684c9559986b27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Thu, 7 Nov 2024 10:29:05 +0100 Subject: [PATCH] REL: bump version number to 4.4.0 --- 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 4f365a3b839..0667f2c16cd 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -70,7 +70,7 @@ # The short X.Y version. version = "4.4" # The full version, including alpha/beta/rc tags. -release = "4.4-dev" +release = "4.4.0" # 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 c81eebdcf73..b80dc5380ab 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ build-backend = "setuptools.build_meta" [project] name = "yt" -version = "4.4.dev0" +version = "4.4.0" 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 5783d567e45..5ab027aca76 100644 --- a/yt/_version.py +++ b/yt/_version.py @@ -7,7 +7,7 @@ "version_info", ] -__version__ = "4.4.dev0" # keep in sync with pyproject.toml +__version__ = "4.4.0" # keep in sync with pyproject.toml class VersionTuple(NamedTuple):