diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c99e6f9..87aadd8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.2 +current_version = 0.3.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+) (?:\.(?Pdev)(?P\d+))? diff --git a/setup.py b/setup.py index f3ed24c..1f7374e 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ setup( name='pytest-cython', - version='0.2.2', + version='0.3.0', description='A plugin for testing Cython extension modules', long_description=long_description, long_description_content_type='text/markdown', diff --git a/tests/example-project/setup.py b/tests/example-project/setup.py index 5071a96..90436c0 100644 --- a/tests/example-project/setup.py +++ b/tests/example-project/setup.py @@ -23,7 +23,7 @@ setup( name='pytest-cython', - version='0.2.2', + version='0.3.0', description="Example Cython project for pytest-cython tests", package_dir={'': 'src'}, packages=['pypackage'],