diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 392f58e..d4ed45f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 10.2.2 +current_version = 10.2.3 commit = True tag = True diff --git a/setup.cfg b/setup.cfg index 41be965..9523b3c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = ispyb -version = 10.2.2 +version = 10.2.3 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 269cb5d..7d596f4 100644 --- a/src/ispyb/__init__.py +++ b/src/ispyb/__init__.py @@ -3,7 +3,7 @@ import os import warnings -__version__ = "10.2.2" +__version__ = "10.2.3" _log = logging.getLogger("ispyb")