Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.
/ py-spy Public archive
forked from benfred/py-spy

Commit

Permalink
Bump version: 0.1.8 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nziebart committed Oct 3, 2018
1 parent 5348e28 commit 81f7296
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "py-spy"
version = "0.1.8"
version = "0.2.0"
authors = ["Ben Frederickson <[email protected]>"]
repository = "https://github.com/benfred/py-spy"
homepage = "https://github.com/benfred/py-spy"
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[bumpversion]
current_version = 0.1.8
current_version = 0.2.0
commit = True
tag = True
tag_name = {new_version}
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?P<releaselevel>[a-z]+)?
serialize =
serialize =
{major}.{minor}.{patch}{releaselevel}
{major}.{minor}.{patch}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def run(self):
url='https://github.com/benfred/py-spy',
description="A Sampling Profiler for Python",
long_description=long_description,
version="0.1.8",
version="0.2.0",
license="GPL",
cmdclass={'install': PostInstallCommand, 'bdist_wheel': bdist_wheel},
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ fn sample_flame(process: &PythonSpy, filename: &str, args: &clap::ArgMatches) ->

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

0 comments on commit 81f7296

Please sign in to comment.