diff --git a/rust_pypi_example/__init__.py b/rust_pypi_example/__init__.py index 73439c7..108dc54 100644 --- a/rust_pypi_example/__init__.py +++ b/rust_pypi_example/__init__.py @@ -2,4 +2,4 @@ __author__ = """Matt McKay""" __email__ = 'mckaymatt@gmail.com' -__version__ = '0.7.4' +__version__ = '0.7.5' diff --git a/rust_pypi_example/rust/Cargo.lock b/rust_pypi_example/rust/Cargo.lock index 1276f71..4493885 100644 --- a/rust_pypi_example/rust/Cargo.lock +++ b/rust_pypi_example/rust/Cargo.lock @@ -1,4 +1,4 @@ [root] name = "rust_pypi_example" -version = "0.7.4" +version = "0.7.5" diff --git a/rust_pypi_example/rust/Cargo.toml b/rust_pypi_example/rust/Cargo.toml index 1903b22..b5fe3f6 100644 --- a/rust_pypi_example/rust/Cargo.toml +++ b/rust_pypi_example/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust_pypi_example" -version = "0.7.4" +version = "0.7.5" authors = ["Matt McKay "] [lib] diff --git a/setup.cfg b/setup.cfg index d46e8d0..a0ec4b8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.7.4 +current_version = 0.7.5 tag = True commit = True @@ -19,13 +19,13 @@ replace = {new_version} search = {current_version} replace = {new_version} - [flake8] exclude = docs [aliases] -test=pytest +test = pytest [tool:pytest] testpaths = tests -addopts = --verbose \ No newline at end of file +addopts = --verbose + diff --git a/setup.py b/setup.py index 89bd755..5ef38b2 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ setup( name='rust_pypi_example', - version='0.7.4', + version='0.7.5', description="Python Boilerplate contains all the boilerplate you need to create a Python wheel with Rust.", long_description=readme + '\n\n' + history, author="Matt McKay",