Skip to content
This repository was archived by the owner on Jul 11, 2023. It is now read-only.

Commit 9097877

Browse files
committed
Bump version
1 parent 6437acb commit 9097877

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

bpf-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bpf-sys"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "Bindings for libbpf"
55
repository = "https://github.com/foniod/redbpf"
66
documentation = "https://foniod.org/api/bpf_sys/"

cargo-bpf/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cargo-bpf"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "Cargo plugin to manage eBPF probes using redbpf"
55
repository = "https://github.com/foniod/redbpf"
66
documentation = "https://foniod.org/api/cargo_bpf/"
@@ -21,8 +21,8 @@ required-features = ["command-line"]
2121
clap = { version = "2.33", optional = true }
2222
bindgen = {version = "0.59.1", default-features = false, features = ["runtime"], optional = true}
2323
toml_edit = { version = "0.2", optional = true }
24-
bpf-sys = { version = "2.0.1", path = "../bpf-sys", optional = true }
25-
redbpf = { version = "2.0.1", path = "../redbpf", default-features = false, optional = true }
24+
bpf-sys = { version = "2.0.2", path = "../bpf-sys", optional = true }
25+
redbpf = { version = "2.0.2", path = "../redbpf", default-features = false, optional = true }
2626
futures = { version = "0.3", optional = true }
2727
tokio = { version = "^1.0.1", features = ["rt", "macros", "signal"], optional = true }
2828
hexdump = { version = "0.1", optional = true }

redbpf-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Procedural macros for redbpf"
44
repository = "https://github.com/foniod/redbpf"
55
documentation = "https://foniod.org/api/redbpf_macros/"
66
authors = ["Alessandro Decina <alessandro.d@gmail.com>", "Peter Parkanyi <p@symmetree.dev>", "Junyeong Jeong <rhdxmr@gmail.com>"]
7-
version = "2.0.1"
7+
version = "2.0.2"
88
edition = '2018'
99
keywords = ["bpf", "ebpf", "redbpf"]
1010
license = "MIT OR Apache-2.0"
@@ -23,6 +23,6 @@ rustc_version = "0.3.0"
2323

2424
[dev-dependencies]
2525
# redbpf-probes is needed by doctests
26-
redbpf-probes = { version = "2.0.1", path = "../redbpf-probes" }
26+
redbpf-probes = { version = "2.0.2", path = "../redbpf-probes" }
2727
# memoffset is needed by doctests
2828
memoffset = "0.6"

redbpf-probes/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ description = "eBPF probe-related types for redbpf"
44
repository = "https://github.com/foniod/redbpf"
55
documentation = "https://foniod.org/api/redbpf_probes/"
66
authors = ["Alessandro Decina <alessandro.d@gmail.com>", "Peter Parkanyi <p@symmetree.dev>", "Junyeong Jeong <rhdxmr@gmail.com>"]
7-
version = "2.0.1"
7+
version = "2.0.2"
88
edition = '2018'
99
keywords = ["bpf", "ebpf", "redbpf"]
1010
license = "MIT OR Apache-2.0"
1111

1212
[dependencies]
1313
cty = "0.2"
14-
redbpf-macros = { version = "2.0.1", path = "../redbpf-macros" }
14+
redbpf-macros = { version = "2.0.2", path = "../redbpf-macros" }
1515
ufmt = { version = "0.1.0", default-features = false }
1616

1717
[build-dependencies]
18-
cargo-bpf = { version = "2.0.1", path = "../cargo-bpf", default-features = false, features = ["bindings"] }
19-
bpf-sys = { version = "2.0.1", path = "../bpf-sys" }
18+
cargo-bpf = { version = "2.0.2", path = "../cargo-bpf", default-features = false, features = ["bindings"] }
19+
bpf-sys = { version = "2.0.2", path = "../bpf-sys" }
2020
syn = {version = "1.0", default-features = false, features = ["parsing", "visit"] }
2121
quote = "1.0"
2222
glob = "0.3.0"

redbpf/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redbpf"
3-
version = "2.0.1"
3+
version = "2.0.2"
44
description = "eBPF build and runtime library"
55
repository = "https://github.com/foniod/redbpf"
66
documentation = "https://foniod.org/api/redbpf/"
@@ -14,7 +14,7 @@ readme = "README.md"
1414
maintenance = { status = "actively-developed" }
1515

1616
[dependencies]
17-
bpf-sys = { path = "../bpf-sys", version = "2.0.1" }
17+
bpf-sys = { path = "../bpf-sys", version = "2.0.2" }
1818
goblin = "0.4"
1919
zero = "0.1"
2020
libc = "0.2"

0 commit comments

Comments
 (0)