diff --git a/setup.cfg b/setup.cfg index 2524fb7..0cce530 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.1.0 +current_version = 2.1.1 commit = True tag = True diff --git a/setup.py b/setup.py index 37799df..d632411 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ README = open(os.path.join(here, 'README.rst')).read() setup(name='skosify', - version='2.1.0', # Use bumpversion to update + version='2.1.1', # Use bumpversion to update description='SKOS converter for RDFS/OWL/SKOS vocabularies.', long_description=README, classifiers=[ diff --git a/skosify/__init__.py b/skosify/__init__.py index 5aa1142..88c805e 100644 --- a/skosify/__init__.py +++ b/skosify/__init__.py @@ -3,5 +3,5 @@ from .config import config from . import infer, check -__version__ = '2.1.0' # Use bumpversion to update +__version__ = '2.1.1' # Use bumpversion to update __all__ = ['skosify', 'config', 'infer', 'check']