diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d180418..8c8b094 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 6.10.0 +current_version = 6.11.0 commit = True tag = True diff --git a/setup.cfg b/setup.cfg index bc2815d..c103195 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = ispyb -version = 6.10.0 +version = 6.11.0 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 7de5f64..696897c 100644 --- a/src/ispyb/__init__.py +++ b/src/ispyb/__init__.py @@ -3,7 +3,7 @@ import os import warnings -__version__ = "6.10.0" +__version__ = "6.11.0" _log = logging.getLogger("ispyb")