Skip to content

Commit b1bf88f

Browse files
committed
Bump version: 0.32.0 → 1.0.0
1 parent bf80227 commit b1bf88f

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/build_and_test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
runs-on: ubuntu-latest
6767
environment:
6868
name: release
69-
url: https://pypi.org/watchdir
69+
url: https://pypi.org/project/zocalo/
7070
permissions:
7171
id-token: write
7272
steps:

HISTORY.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22
History
33
=======
44

5-
Unreleased
6-
----------
5+
1.0.0 (2024-07-19)
6+
------------------
77
* Add example rabbitmq configuration and user files to ``contrib/`` (`#245 <https://github.com/DiamondLightSource/python-zocalo/pull/245>`_)
88
* Switch python packaging backend to poetry.
9+
* Update pydantic dependency to v2. This probably breaks compatibility with older versions, so major version is bumped.
910

1011
0.32.0 (2024-04-05)
1112
-------------------

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# the built documents.
6060
#
6161
# The short X.Y version.
62-
version = "0.32.0"
62+
version = "1.0.0"
6363
# The full version, including alpha/beta/rc tags.
6464
release = version
6565

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "zocalo"
3-
version = "0.32.0"
3+
version = "1.0.0"
44
description = "Infrastructure components for automated data processing at Diamond Light Source"
55
authors = ["Nicholas Devenish <[email protected]>"]
66
readme = "README.rst"
@@ -113,7 +113,7 @@ module = ["graypy", "graypy.handler"]
113113
ignore_missing_imports = true
114114

115115
[tool.bumpversion]
116-
current_version = "0.32.0"
116+
current_version = "1.0.0"
117117
commit = true
118118
tag = true
119119

src/zocalo/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
__author__ = "Diamond Light Source - Data Analysis Group"
88
__email__ = "[email protected]"
9-
__version__ = "0.32.0"
9+
__version__ = "1.0.0"
1010

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

0 commit comments

Comments
 (0)