diff --git a/procrunner/__init__.py b/procrunner/__init__.py index 9823cb7..52538a4 100644 --- a/procrunner/__init__.py +++ b/procrunner/__init__.py @@ -51,7 +51,7 @@ __author__ = """Markus Gerstel""" __email__ = 'scientificsoftware@diamond.ac.uk' -__version__ = '0.2.0' +__version__ = '0.3.0' logger = logging.getLogger('procrunner') logger.addHandler(logging.NullHandler()) diff --git a/setup.cfg b/setup.cfg index ad9f31c..e64c5a7 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.3.0 commit = True tag = True diff --git a/setup.py b/setup.py index d1cc4a3..3570d2a 100644 --- a/setup.py +++ b/setup.py @@ -46,6 +46,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/DiamondLightSource/python-procrunner', - version='0.2.0', + version='0.3.0', zip_safe=False, )