diff --git a/csp-billing-adapter.spec b/csp-billing-adapter.spec index 58e19b3..33d1701 100644 --- a/csp-billing-adapter.spec +++ b/csp-billing-adapter.spec @@ -19,7 +19,7 @@ %global skip_python2 1 %define pythons python3 Name: csp-billing-adapter -Version: 0.9.0 +Version: 0.10.0 Release: 0 Summary: Reports marketplace billing information to CSP API License: Apache-2.0 diff --git a/csp_billing_adapter/__init__.py b/csp_billing_adapter/__init__.py index 1fb3117..e4cf3db 100644 --- a/csp_billing_adapter/__init__.py +++ b/csp_billing_adapter/__init__.py @@ -30,7 +30,7 @@ __author__ = """SUSE""" __email__ = 'public-cloud-dev@susecloud.net' -__version__ = '0.9.0' +__version__ = '0.10.0' hookimpl = pluggy.HookimplMarker('csp_billing_adapter') """Marker to be imported and used in plugins (and for own implementations)""" diff --git a/setup.cfg b/setup.cfg index 68f0dae..b26019c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.0 +current_version = 0.10.0 commit = True tag = True diff --git a/setup.py b/setup.py index 507b1fe..a3becc5 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ setup( name='csp-billing-adapter', - version='0.9.0', + version='0.10.0', description='TBD', long_description=readme, long_description_content_type='text/markdown', diff --git a/tests/unit/test_adapter.py b/tests/unit/test_adapter.py index e2af698..c6b7601 100644 --- a/tests/unit/test_adapter.py +++ b/tests/unit/test_adapter.py @@ -50,7 +50,7 @@ def test_adapter_version(): """Verify the adapter version.""" - assert csp_billing_adapter.__version__ == "0.9.0" + assert csp_billing_adapter.__version__ == "0.10.0" def test_get_plugin_manager(cba_config):