Skip to content
This repository was archived by the owner on Sep 25, 2021. It is now read-only.

Commit 81f7296

Browse files
committed
Bump version: 0.1.8 → 0.2.0
1 parent 5348e28 commit 81f7296

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "py-spy"
3-
version = "0.1.8"
3+
version = "0.2.0"
44
authors = ["Ben Frederickson <[email protected]>"]
55
repository = "https://github.com/benfred/py-spy"
66
homepage = "https://github.com/benfred/py-spy"

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[bumpversion]
2-
current_version = 0.1.8
2+
current_version = 0.2.0
33
commit = True
44
tag = True
55
tag_name = {new_version}
66
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z]+)?
7-
serialize =
7+
serialize =
88
{major}.{minor}.{patch}{releaselevel}
99
{major}.{minor}.{patch}
1010

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def run(self):
8888
url='https://github.com/benfred/py-spy',
8989
description="A Sampling Profiler for Python",
9090
long_description=long_description,
91-
version="0.1.8",
91+
version="0.2.0",
9292
license="GPL",
9393
cmdclass={'install': PostInstallCommand, 'bdist_wheel': bdist_wheel},
9494
classifiers=[

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ fn sample_flame(process: &PythonSpy, filename: &str, args: &clap::ArgMatches) ->
202202

203203
fn pyspy_main() -> Result<(), Error> {
204204
let matches = App::new("py-spy")
205-
.version("0.1.8")
205+
.version("0.2.0")
206206
.about("A sampling profiler for Python programs")
207207
.arg(Arg::with_name("function")
208208
.short("F")

0 commit comments

Comments
 (0)