From ade27e6e4625c0fb72e7490c27d7d00979d9abd0 Mon Sep 17 00:00:00 2001 From: Ben Frederickson Date: Sat, 26 Oct 2019 20:54:42 -0700 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.2.2=20=E2=86=92=200.3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- remoteprocess/Cargo.lock | 2 +- remoteprocess/Cargo.toml | 2 +- setup.cfg | 2 +- setup.py | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 56b53f18..98993acb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -636,7 +636,7 @@ dependencies = [ [[package]] name = "py-spy" -version = "0.2.2" +version = "0.3.0" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "console 0.7.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -655,7 +655,7 @@ dependencies = [ "proc-maps 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "regex 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "remoteprocess 0.2.0", + "remoteprocess 0.3.0", "serde 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "serde_derive 1.0.98 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json 1.0.40 (registry+https://github.com/rust-lang/crates.io-index)", @@ -856,7 +856,7 @@ dependencies = [ [[package]] name = "remoteprocess" -version = "0.2.0" +version = "0.3.0" dependencies = [ "addr2line 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "benfred-read-process-memory 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 474b318f..121fd576 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "py-spy" -version = "0.2.2" +version = "0.3.0" authors = ["Ben Frederickson "] repository = "https://github.com/benfred/py-spy" homepage = "https://github.com/benfred/py-spy" @@ -32,7 +32,7 @@ serde = "1.0" serde_derive = "1.0" serde_json = "1.0" rand = "0.6" -remoteprocess = {path="./remoteprocess", version="0.2.0"} +remoteprocess = {path="./remoteprocess", version="0.3.0"} [target.'cfg(unix)'.dependencies] termios = "0.3.1" diff --git a/remoteprocess/Cargo.lock b/remoteprocess/Cargo.lock index 78ba13e5..60cad934 100644 --- a/remoteprocess/Cargo.lock +++ b/remoteprocess/Cargo.lock @@ -421,7 +421,7 @@ dependencies = [ [[package]] name = "remoteprocess" -version = "0.2.0" +version = "0.3.0" dependencies = [ "addr2line 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", "benfred-read-process-memory 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/remoteprocess/Cargo.toml b/remoteprocess/Cargo.toml index 743fba3c..a952a3db 100644 --- a/remoteprocess/Cargo.toml +++ b/remoteprocess/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "remoteprocess" -version = "0.2.0" +version = "0.3.0" authors = ["Ben Frederickson "] repository = "https://github.com/benfred/py-spy" homepage = "https://github.com/benfred/py-spy/tree/master/remoteprocess" diff --git a/setup.cfg b/setup.cfg index 8de937cc..9565186e 100755 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.2 +current_version = 0.3.0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P(a|b|rc|\.dev)\d+))? diff --git a/setup.py b/setup.py index 4e772b09..ed42f21e 100755 --- a/setup.py +++ b/setup.py @@ -89,7 +89,7 @@ def run(self): url='https://github.com/benfred/py-spy', description="A Sampling Profiler for Python", long_description=long_description, - version="0.2.2", + version="0.3.0", license="MIT", cmdclass={'install': PostInstallCommand, 'bdist_wheel': bdist_wheel}, classifiers=[