diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 3052746b..b40eabca 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.0 +current_version = 0.11.1 commit = True tag = True diff --git a/docs/conf.py b/docs/conf.py index 649d807c..63d28bdf 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,9 +45,9 @@ def __getattr__(cls, name): author = 'Andreas Albert, Clemens Lange' # The short X.Y version -version = '0.11.0' +version = '0.11.1' # The full version, including alpha/beta/rc tags -release = '0.11.0' +release = '0.11.1' # -- General configuration --------------------------------------------------- diff --git a/hepdata_lib/__init__.py b/hepdata_lib/__init__.py index cbae91d1..eda65f68 100644 --- a/hepdata_lib/__init__.py +++ b/hepdata_lib/__init__.py @@ -47,7 +47,7 @@ def dict_constructor(loader, node): # Display deprecation warnings warnings.filterwarnings("always", category=DeprecationWarning, module="hepdata_lib") -__version__ = "0.11.0" +__version__ = "0.11.1" class AdditionalResourceMixin(object): """Functionality related to additional materials.""" diff --git a/setup.py b/setup.py index ba7dc300..7a652d1b 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setup( name='hepdata_lib', - version='0.11.0', + version='0.11.1', description='Library for getting your data into HEPData', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown',