From b1bf88fa96ca97d7b935cd3ee39aa81558137c55 Mon Sep 17 00:00:00 2001 From: Nicholas Devenish Date: Fri, 19 Jul 2024 10:04:20 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.32.0=20=E2=86=92=201.0.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_and_test.yml | 2 +- HISTORY.rst | 5 +++-- docs/conf.py | 2 +- pyproject.toml | 4 ++-- src/zocalo/__init__.py | 2 +- 5 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index ed2b2cd..78141e2 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -66,7 +66,7 @@ jobs: runs-on: ubuntu-latest environment: name: release - url: https://pypi.org/watchdir + url: https://pypi.org/project/zocalo/ permissions: id-token: write steps: diff --git a/HISTORY.rst b/HISTORY.rst index a0df316..649545f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,10 +2,11 @@ History ======= -Unreleased ----------- +1.0.0 (2024-07-19) +------------------ * Add example rabbitmq configuration and user files to ``contrib/`` (`#245 `_) * Switch python packaging backend to poetry. +* Update pydantic dependency to v2. This probably breaks compatibility with older versions, so major version is bumped. 0.32.0 (2024-04-05) ------------------- diff --git a/docs/conf.py b/docs/conf.py index ea8bc54..9af3b35 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ # the built documents. # # The short X.Y version. -version = "0.32.0" +version = "1.0.0" # The full version, including alpha/beta/rc tags. release = version diff --git a/pyproject.toml b/pyproject.toml index 8620e25..aeabae8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "zocalo" -version = "0.32.0" +version = "1.0.0" description = "Infrastructure components for automated data processing at Diamond Light Source" authors = ["Nicholas Devenish "] readme = "README.rst" @@ -113,7 +113,7 @@ module = ["graypy", "graypy.handler"] ignore_missing_imports = true [tool.bumpversion] -current_version = "0.32.0" +current_version = "1.0.0" commit = true tag = true diff --git a/src/zocalo/__init__.py b/src/zocalo/__init__.py index f5885e2..9efc109 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.32.0" +__version__ = "1.0.0" logging.getLogger("zocalo").addHandler(logging.NullHandler())