From 5dffc9ab1e98e06270506ac9632a312cb3ab9998 Mon Sep 17 00:00:00 2001 From: Nicholas Devenish Date: Wed, 6 Sep 2023 13:29:33 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.30.1=20=E2=86=92=200.30.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- HISTORY.rst | 4 ++++ docs/conf.py | 2 +- pyproject.toml | 2 +- src/zocalo/__init__.py | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 080ac2b..9dbf2dd 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.30.1 +current_version = 0.30.2 commit = True tag = True diff --git a/HISTORY.rst b/HISTORY.rst index 4f339c8..e850adb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,7 +4,11 @@ History Unreleased ---------- + +0.30.2 (2023-09-06) +------------------- * Add the slurm "prefer" field to ``slurm.models.JobProperties``. (`#244 `_) +* Switch zocalo to pyproject.toml, and update CI. (`#243 `_) 0.30.1 (2023-08-24) ------------------- diff --git a/docs/conf.py b/docs/conf.py index 4ca4b95..f192de9 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ # the built documents. # # The short X.Y version. -version = "0.30.1" +version = "0.30.2" # The full version, including alpha/beta/rc tags. release = version diff --git a/pyproject.toml b/pyproject.toml index a0a3b07..77bed6f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "zocalo" -version = "0.30.1" +version = "0.30.2" description = "Infrastructure components for automated data processing at Diamond Light Source" readme = "README.rst" requires-python = ">=3.8" diff --git a/src/zocalo/__init__.py b/src/zocalo/__init__.py index 7fe3c13..07b1506 100644 --- a/src/zocalo/__init__.py +++ b/src/zocalo/__init__.py @@ -6,7 +6,7 @@ __author__ = "Diamond Light Source - Data Analysis Group" __email__ = "dataanalysis@diamond.ac.uk" -__version__ = "0.30.1" +__version__ = "0.30.2" logging.getLogger("zocalo").addHandler(logging.NullHandler())