Skip to content

Commit

Permalink
Bump to 0.8.1 (#8228)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #8228

0.8.0 depended on an unreleased version of libbpf-rs preventing us
from releasing to crates.io.

Reviewed By: antonis-m

Differential Revision: D55769523

fbshipit-source-id: 796e5e9412717fad0293338ceacc76f96c2933b2
  • Loading branch information
brianc118 authored and facebook-github-bot committed Apr 5, 2024
1 parent 672da64 commit 47c3015
Show file tree
Hide file tree
Showing 16 changed files with 75 additions and 85 deletions.
64 changes: 27 additions & 37 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions below/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below"
version = "0.8.0"
version = "0.8.1"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "An interactive tool to view and record historical system data"
Expand All @@ -21,31 +21,31 @@ unit-scripts = "../etc"

[dependencies]
anyhow = "1.0.75"
cgroupfs = { version = "0.8.0", path = "cgroupfs" }
cgroupfs = { version = "0.8.1", path = "cgroupfs" }
clap = { version = "4.5.2", features = ["derive", "env", "string", "unicode", "wrap_help"] }
clap_complete = "4.5.1"
common = { package = "below-common", version = "0.8.0", path = "common" }
config = { package = "below-config", version = "0.8.0", path = "config" }
common = { package = "below-common", version = "0.8.1", path = "common" }
config = { package = "below-config", version = "0.8.1", path = "config" }
cursive = { version = "0.20.0", features = ["crossterm-backend"], default-features = false }
dump = { package = "below-dump", version = "0.8.0", path = "dump" }
dump = { package = "below-dump", version = "0.8.1", path = "dump" }
indicatif = { version = "0.17.6", features = ["improved_unicode", "rayon", "tokio"] }
libbpf-rs = { version = "0.23", default-features = false }
libc = "0.2.139"
model = { package = "below-model", version = "0.8.0", path = "model" }
model = { package = "below-model", version = "0.8.1", path = "model" }
once_cell = "1.12"
plain = "0.2"
procfs = { package = "fb_procfs", version = "0.8.0", path = "procfs" }
procfs = { package = "fb_procfs", version = "0.8.1", path = "procfs" }
regex = "1.9.2"
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
signal-hook = "0.3"
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
slog-term = "2.8"
store = { package = "below-store", version = "0.8.0", path = "store" }
store = { package = "below-store", version = "0.8.1", path = "store" }
tar = "0.4.40"
tempfile = "3.8"
tokio = { version = "1.36.0", features = ["full", "test-util", "tracing"] }
uzers = "0.11.3"
view = { package = "below-view", version = "0.8.0", path = "view" }
view = { package = "below-view", version = "0.8.1", path = "view" }

[dev-dependencies]
maplit = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion below/below_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below_derive"
version = "0.8.0"
version = "0.8.1"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Proc macros for below"
Expand Down
4 changes: 2 additions & 2 deletions below/btrfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-btrfs"
version = "0.8.0"
version = "0.8.1"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "A crate for reading btrfs"
Expand All @@ -11,7 +11,7 @@ repository = "https://github.com/facebookincubator/below"
license = "Apache-2.0"

[dependencies]
common = { package = "below-common", version = "0.8.0", path = "../common" }
common = { package = "below-common", version = "0.8.1", path = "../common" }
libc = "0.2.139"
nix = "0.25"
openat = "0.1.21"
Expand Down
2 changes: 1 addition & 1 deletion below/cgroupfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "cgroupfs"
version = "0.8.0"
version = "0.8.1"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "A crate for reading cgroupv2 data"
Expand Down
2 changes: 1 addition & 1 deletion below/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-common"
version = "0.8.0"
version = "0.8.1"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Common below code"
Expand Down
6 changes: 3 additions & 3 deletions below/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-config"
version = "0.8.0"
version = "0.8.1"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Configurations for below"
Expand All @@ -11,8 +11,8 @@ license = "Apache-2.0"

[dependencies]
anyhow = "1.0.75"
btrfs = { package = "below-btrfs", version = "0.8.0", path = "../btrfs" }
cgroupfs = { version = "0.8.0", path = "../cgroupfs" }
btrfs = { package = "below-btrfs", version = "0.8.1", path = "../btrfs" }
cgroupfs = { version = "0.8.1", path = "../cgroupfs" }
serde = { version = "1.0.185", features = ["derive", "rc"] }
toml = "0.8.4"

Expand Down
12 changes: 6 additions & 6 deletions below/dump/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-dump"
version = "0.8.0"
version = "0.8.1"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Dump crate for below"
Expand All @@ -11,17 +11,17 @@ license = "Apache-2.0"

[dependencies]
anyhow = "1.0.75"
below_derive = { version = "0.8.0", path = "../below_derive" }
below_derive = { version = "0.8.1", path = "../below_derive" }
clap = { version = "4.5.2", features = ["derive", "env", "string", "unicode", "wrap_help"] }
common = { package = "below-common", version = "0.8.0", path = "../common" }
common = { package = "below-common", version = "0.8.1", path = "../common" }
enum-iterator = "1.4.1"
model = { package = "below-model", version = "0.8.0", path = "../model" }
model = { package = "below-model", version = "0.8.1", path = "../model" }
once_cell = "1.12"
regex = "1.9.2"
render = { package = "below-render", version = "0.8.0", path = "../render" }
render = { package = "below-render", version = "0.8.1", path = "../render" }
serde_json = { version = "1.0.100", features = ["float_roundtrip", "unbounded_depth"] }
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
store = { package = "below-store", version = "0.8.0", path = "../store" }
store = { package = "below-store", version = "0.8.1", path = "../store" }
tar = "0.4.40"
tempfile = "3.8"
toml = "0.8.4"
2 changes: 1 addition & 1 deletion below/ethtool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "below-ethtool"
version = "0.8.0"
version = "0.8.1"
authors = ["Daniel Xu <dlxu@fb.com>", "Facebook"]
edition = "2021"
description = "Model crate for below"
Expand Down
Loading

0 comments on commit 47c3015

Please sign in to comment.