From 837c800328f5f4bcaf8be7a42081dd8be551732d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Fri, 26 May 2023 15:01:22 +0200 Subject: [PATCH] MNT: bump dev version --- doc/source/conf.py | 4 ++-- pyproject.toml | 2 +- yt/_version.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 44d81ce80b..eb5b7a5fec 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -77,9 +77,9 @@ # built documents. # # The short X.Y version. -version = "4.2-dev" +version = "4.3" # The full version, including alpha/beta/rc tags. -release = "4.2-dev" +release = "4.3-dev" # 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 dde9eb01d6..56c86bba68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ requires = [ [project] name = "yt" -version = "4.2.dev0" +version = "4.3.dev0" 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 478034645c..ab11ac9072 100644 --- a/yt/_version.py +++ b/yt/_version.py @@ -7,7 +7,7 @@ "version_info", ] -__version__ = "4.2.dev0" # keep in sync with pyproject.toml +__version__ = "4.3.dev0" # keep in sync with pyproject.toml class VersionTuple(NamedTuple):