Skip to content

Commit 0828975

Browse files
committed
chore(deps): update packages versions
1 parent 3b0f3dc commit 0828975

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

pyroscope_backends/pyroscope_pprofrs/Cargo.toml

Lines changed: 1 addition & 1 deletion
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-beta"
8+
version = "0.1.0"
99
edition = "2021"
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io"

pyroscope_backends/pyroscope_pyspy/Cargo.toml

Lines changed: 1 addition & 1 deletion
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-beta"
8+
version = "0.1.0"
99
edition = "2021"
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io"

pyroscope_backends/pyroscope_rbspy/Cargo.toml

Lines changed: 1 addition & 1 deletion
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-beta"
8+
version = "0.1.0"
99
edition = "2021"
1010
license = "Apache-2.0"
1111
homepage = "https://pyroscope.io"

pyroscope_cli/Cargo.lock

Lines changed: 6 additions & 6 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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ members = [
2121
]
2222

2323
[dependencies]
24-
utils = { path = "utils" }
25-
cli = { path = "cli"}
26-
core = { path = "core" }
24+
utils = {version = "0.1", path = "utils" }
25+
cli = {version = "0.1", path = "cli"}
26+
core = {version = "0.1", path = "core" }
2727
human-panic = "1.0.3"
2828
pretty_env_logger = "0.4.0"
2929
better-panic = "0.3.0"

pyroscope_cli/cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "cli"
3-
version = "0.4.0"
3+
version = "0.1.0"
44
authors = ["Abid Omar <[email protected]>"]
55
description = "CLI interface"
66
edition = "2021"
77

88
[dependencies]
9-
utils = { path = "../utils" }
10-
core = { path = "../core" }
9+
utils = { version = "0.1", path = "../utils" }
10+
core = { version = "0.1", path = "../core" }
1111
clap_complete = "3.1"
1212
names= "0.13.0"
1313

pyroscope_cli/core/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "core"
3-
version = "0.4.0"
3+
version = "0.1.0"
44
authors = ["Abid Omar <[email protected]>"]
55
description = "Core package for the project"
66
edition = "2021"
77

88
[dependencies]
9-
utils = { path = "../utils" }
10-
pyroscope = { path = "../../" }
11-
pyroscope_pprofrs = { path = "../../pyroscope_backends/pyroscope_pprofrs" }
12-
pyroscope_rbspy = { path = "../../pyroscope_backends/pyroscope_rbspy" }
13-
pyroscope_pyspy = { path = "../../pyroscope_backends/pyroscope_pyspy" }
9+
utils = {version = "0.1", path = "../utils" }
10+
pyroscope = { version = "0.4", path = "../../" }
11+
pyroscope_pprofrs = {version = "0.1", path = "../../pyroscope_backends/pyroscope_pprofrs" }
12+
pyroscope_rbspy = {version = "0.1", path = "../../pyroscope_backends/pyroscope_rbspy" }
13+
pyroscope_pyspy = {version = "0.1", path = "../../pyroscope_backends/pyroscope_pyspy" }
1414
log = "=0.4.11"
1515
ctrlc = "3.2.1"
1616
duct = "0.13.5"

pyroscope_cli/utils/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "utils"
3-
version = "0.4.0"
3+
version = "0.1.0"
44
authors = ["Abid Omar <[email protected]>"]
55
description = "Various utilities and functionalities"
66
edition = "2021"
@@ -18,4 +18,4 @@ slog-stdlog = "4.1.0"
1818
clap = "=3.1.6"
1919
log = "=0.4.11"
2020
serde = { version = "1.0", features = ["derive"] }
21-
pyroscope = { path = "../../" }
21+
pyroscope = {version = "0.4", path = "../../" }

0 commit comments

Comments
 (0)