From 44407c58a2ba044823385ce22c86fc1b23239587 Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Mon, 1 May 2023 10:42:03 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.1.1=20=E2=86=92=200.1.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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",