Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version: 0.30.2 → 0.32.0 #249

Merged
merged 1 commit into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.30.2
current_version = 0.32.0
commit = True
tag = True

Expand Down
6 changes: 5 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@ History

Unreleased
----------
* ``zocalo.configure_rabbitmq``: Show explicit error when VHost not created.

0.32.0 (2024-04-05)
-------------------
* Upgrade to Slurm REST API v0.0.40. (`#248 <https://github.com/DiamondLightSource/python-zocalo/pull/248>`_)
* ``zocalo.configure_rabbitmq``: Show explicit error when VHost not created. (`#241 <https://github.com/DiamondLightSource/python-zocalo/pull/241>`_).

0.30.2 (2023-09-06)
-------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@

# General information about the project.
project = "Zocalo"
copyright = "2020, Diamond Light Source"
copyright = "2024, Diamond Light Source"
author = "Scientific Software"

# The version info for the project you're documenting, acts as replacement
# for |version| and |release|, also used in various other places throughout
# the built documents.
#
# The short X.Y version.
version = "0.30.2"
version = "0.32.0"
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "zocalo"
version = "0.30.2"
version = "0.32.0"
description = "Infrastructure components for automated data processing at Diamond Light Source"
readme = "README.rst"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion src/zocalo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

__author__ = "Diamond Light Source - Data Analysis Group"
__email__ = "[email protected]"
__version__ = "0.30.2"
__version__ = "0.32.0"

logging.getLogger("zocalo").addHandler(logging.NullHandler())

Expand Down
Loading