Skip to content

Commit d22203c

Browse files
committed
bump versions
1 parent fa25ce2 commit d22203c

File tree

11 files changed

+23
-25
lines changed

11 files changed

+23
-25
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pyroscope Profiler Agent for continuous profiling of Rust, Python and Ruby appli
55
"""
66
keywords = ["pyroscope", "profiler", "profiling", "pprof"]
77
authors = ["Abid Omar <[email protected]>"]
8-
version = "0.5.4"
8+
version = "0.5.5"
99
edition = "2021"
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io/docs/rust"

pyroscope_backends/pyroscope_pprofrs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pprof-rs backend for Pyroscope Profiler.
55
"""
66
keywords = ["pyroscope", "profiler", "pprof-rs"]
77
authors = ["Abid Omar <[email protected]>"]
8-
version = "0.2.4"
8+
version = "0.2.5"
99
edition = "2021"
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io"
@@ -16,7 +16,7 @@ readme = "README.md"
1616

1717
[dependencies]
1818
pprof = "0.10.0"
19-
pyroscope = { version = "0.5.4", path = "../../", default-features = false }
19+
pyroscope = { version = "0.5.5", path = "../../", default-features = false }
2020
thiserror ="1.0"
2121
log = "0.4"
2222

pyroscope_backends/pyroscope_pyspy/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pyspy backend for Pyroscope Profiler.
55
"""
66
keywords = ["pyroscope", "profiler", "pyspy"]
77
authors = ["Abid Omar <[email protected]>"]
8-
version = "0.2.4"
8+
version = "0.2.5"
99
edition = "2021"
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io"
@@ -15,7 +15,7 @@ readme = "README.md"
1515

1616
[dependencies]
1717
py-spy = "0.3.14"
18-
pyroscope = { version = "0.5.4", path = "../../", default-features = false }
18+
pyroscope = { version = "0.5.5", path = "../../" , default-features = false }
1919
thiserror ="1.0"
2020
log = "0.4"
2121
inferno = "=0.11.14"

pyroscope_backends/pyroscope_rbspy/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ rbspy backend for Pyroscope Profiler.
55
"""
66
keywords = ["pyroscope", "profiler", "rbspy"]
77
authors = ["Abid Omar <[email protected]>"]
8-
version = "0.2.3"
8+
version = "0.2.5"
99
edition = "2021"
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io"
@@ -15,7 +15,7 @@ readme = "README.md"
1515

1616
[dependencies]
1717
rbspy= {package = "rbspy", path="../rbspy"}
18-
pyroscope = { version = "0.5.4", path = "../../", default-features = false }
18+
pyroscope = { version = "0.5.5", path = "../../", default-features = false }
1919
thiserror ="1.0"
2020
log = "0.4"
2121
anyhow = "1.0.56"

pyroscope_cli/Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyroscope_cli/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pyroscope Profiler CLI
55
"""
66
keywords = ["pyroscope", "profiler", "cli"]
77
authors = ["Abid Omar <[email protected]>"]
8-
version = "0.2.2"
8+
version = "0.2.3"
99
edition = "2021"
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io"
@@ -34,10 +34,10 @@ slog-term = "2.8.0"
3434
slog-scope = "4.4.0"
3535
slog-async = "2.7.0"
3636
slog-stdlog = "4.1.0"
37-
pyroscope = { version = "0.5.4", path = "../", default-features = false }
38-
pyroscope_pprofrs = {version = "0.2.3", path = "../pyroscope_backends/pyroscope_pprofrs", default-features = false }
39-
pyroscope_rbspy = {version = "0.2.2", path = "../pyroscope_backends/pyroscope_rbspy", default-features = false }
40-
pyroscope_pyspy = {version = "0.2.3", path = "../pyroscope_backends/pyroscope_pyspy", default-features = false }
37+
pyroscope = { path = "../", default-features = false }
38+
pyroscope_pprofrs = { path = "../pyroscope_backends/pyroscope_pprofrs", default-features = false }
39+
pyroscope_rbspy = { path = "../pyroscope_backends/pyroscope_rbspy", default-features = false }
40+
pyroscope_pyspy = { path = "../pyroscope_backends/pyroscope_pyspy", default-features = false }
4141
json = "0.12.4"
4242

4343
[dependencies.clap]

pyroscope_ffi/python/lib/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyroscope_ffi/python/lib/Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ rust-version = "1.63"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12-
#pyroscope = { version = "0.5.3" }
1312
pyroscope = { path = "../../../" }
14-
#pyroscope_pyspy = { version = "0.2.3" }
1513
pyroscope_pyspy = { path = "../../../pyroscope_backends/pyroscope_pyspy" }
1614
ffikit = { path = "../../ffikit" }
1715
pretty_env_logger = "0.4.0"

pyroscope_ffi/python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pyroscope-io
3-
version= 0.8.1
3+
version= 0.8.2
44
description = Pyroscope Python integration
55
long_description = file: README.md
66
long_description_content_type = text/markdown

pyroscope_ffi/ruby/ext/rbspy/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)