Skip to content

Commit 6a972f5

Browse files
committed
imp(backends): update Backends version
1 parent 02ed62d commit 6a972f5

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

pyroscope_backends/pyroscope_pprofrs/Cargo.toml

Lines changed: 3 additions & 3 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.1.0"
8+
version = "0.2.0"
99
edition = "2021"
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io"
@@ -15,8 +15,8 @@ readme = "README.md"
1515

1616

1717
[dependencies]
18-
pprof = "0.7"
19-
pyroscope = {version = "0.4.0", path = "../../" }
18+
pprof = "0.8"
19+
pyroscope = {version = "0.5.0", path = "../../" }
2020
thiserror ="1.0"
2121

2222
[profile.dev]

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.1.0"
8+
version = "0.2.0"
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.11"
18-
pyroscope = { version = "0.4.0", path = "../../" }
18+
pyroscope = { version = "0.5.0", path = "../../" }
1919
thiserror ="1.0"
2020

2121
[profile.dev]

pyroscope_backends/pyroscope_rbspy/Cargo.toml

Lines changed: 3 additions & 3 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.1.0"
8+
version = "0.2.0"
99
edition = "2021"
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io"
@@ -14,8 +14,8 @@ repository = "https://github.com/pyroscope-io/pyroscope-rs"
1414
readme = "README.md"
1515

1616
[dependencies]
17-
rbspy = "0.11.1"
18-
pyroscope = { version = "0.4", path = "../../" }
17+
rbspy = "0.12.1"
18+
pyroscope = { version = "0.5", path = "../../" }
1919
thiserror ="1.0"
2020
log = "0.4"
2121
anyhow = "1.0.56"

pyroscope_backends/pyroscope_rbspy/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ impl Backend for Rbspy {
155155
self.config.lock_process,
156156
self.config.time_limit,
157157
self.config.with_subprocesses,
158+
None,
158159
));
159160

160161
// Channel for Errors generated by the RubySpy Sampler

0 commit comments

Comments
 (0)