diff --git a/Cargo.toml b/Cargo.toml index dd77f6a..6401b55 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "py_cpp_demangle" -version = "0.1.1" +version = "0.1.2" authors = ["Ben Frederickson "] edition = "2021" diff --git a/setup.cfg b/setup.cfg index fb3d697..6769b8a 100755 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.1 +current_version = 0.1.2 commit = True tag = True diff --git a/setup.py b/setup.py index 32bf306..10da346 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ url='http://github.com/benfred/py-cpp-demangle/', description="A package for demangling C++ linker symbols", long_description=open("README.rst").read(), - version="0.1.1", + version="0.1.2", rust_extensions=[RustExtension('cpp_demangle', 'Cargo.toml', binding=Binding.PyO3)], test_suite="tests", license="MIT",