From e921aaf541e2cdce14f68ce637957a3adc81c6e4 Mon Sep 17 00:00:00 2001 From: Nicholas Devenish Date: Fri, 23 Aug 2024 14:48:45 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=2010.2.0=20=E2=86=92=2010.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- setup.cfg | 2 +- src/ispyb/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ac896049..54569704 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 10.2.0 +current_version = 10.2.1 commit = True tag = True diff --git a/setup.cfg b/setup.cfg index 5d04f1f3..c62e849f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = ispyb -version = 10.2.0 +version = 10.2.1 description = Python package to access ISPyB database description-file = README.md long_description = This package provides a Python interface to ISPyB. It can access the ISPyB database directly or (in future versions) run on top of the official ISPyB webservices API. diff --git a/src/ispyb/__init__.py b/src/ispyb/__init__.py index 29edef27..ae04a821 100644 --- a/src/ispyb/__init__.py +++ b/src/ispyb/__init__.py @@ -3,7 +3,7 @@ import os import warnings -__version__ = "10.2.0" +__version__ = "10.2.1" _log = logging.getLogger("ispyb")