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

Commit

Permalink
Bump version numbers
Browse files Browse the repository at this point in the history
Signed-off-by: rsdy <p@symmetree.dev>
  • Loading branch information
rsdy committed Nov 16, 2021
1 parent fa43368 commit cd642e0
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions bpf-sys/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "bpf-sys"
version = "2.1.0"
version = "2.2.0"
description = "Bindings for libbpf"
repository = "https://github.com/foniod/redbpf"
homepage = "https://foniod.org"
documentation = "https://docs.rs/bpf-sys/2.1.0/bpf_sys"
documentation = "https://docs.rs/bpf-sys"
authors = ["Peter Parkanyi <p@symmetree.dev>", "Junyeong Jeong <rhdxmr@gmail.com>"]
links = "bpf"
edition = "2018"
Expand Down
8 changes: 4 additions & 4 deletions cargo-bpf/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "cargo-bpf"
version = "2.1.0"
version = "2.2.0"
description = "Cargo plugin to manage eBPF probes using redbpf"
repository = "https://github.com/foniod/redbpf"
homepage = "https://foniod.org"
documentation = "https://docs.rs/cargo-bpf/2.1.0/cargo_bpf_lib/"
documentation = "https://docs.rs/cargo-bpf/2.2.0/cargo_bpf_lib/"
authors = ["Alessandro Decina <alessandro.d@gmail.com>", "Peter Parkanyi <p@symmetree.dev>", "Junyeong Jeong <rhdxmr@gmail.com>"]
edition = "2018"
keywords = ["cargo", "redbpf", "bpf", "plugin", "subcommand"]
Expand All @@ -22,8 +22,8 @@ required-features = ["command-line"]
clap = { version = "2.33", optional = true }
bindgen = {version = "0.59.1", default-features = false, features = ["runtime"], optional = true}
toml_edit = { version = "0.2", optional = true }
bpf-sys = { version = "2.1.0", path = "../bpf-sys", optional = true }
redbpf = { version = "2.1.0", path = "../redbpf", default-features = false, optional = true }
bpf-sys = { version = "2.2.0", path = "../bpf-sys", optional = true }
redbpf = { version = "2.2.0", path = "../redbpf", default-features = false, optional = true }
futures = { version = "0.3", optional = true }
tokio = { version = "^1.0.1", features = ["rt", "macros", "signal"], optional = true }
hexdump = { version = "0.1", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions redbpf-macros/Cargo.toml
Expand Up @@ -3,9 +3,9 @@ name = "redbpf-macros"
description = "Procedural macros for redbpf"
repository = "https://github.com/foniod/redbpf"
homepage = "https://foniod.org"
documentation = "https://docs.rs/redbpf-macros/2.1.0/redbpf_macros/"
documentation = "https://docs.rs/redbpf-macros/"
authors = ["Alessandro Decina <alessandro.d@gmail.com>", "Peter Parkanyi <p@symmetree.dev>", "Junyeong Jeong <rhdxmr@gmail.com>"]
version = "2.1.0"
version = "2.2.0"
edition = '2018'
keywords = ["bpf", "ebpf", "redbpf"]
license = "MIT OR Apache-2.0"
Expand All @@ -24,6 +24,6 @@ rustc_version = "0.3.0"

[dev-dependencies]
# redbpf-probes is needed by doctests
redbpf-probes = { version = "2.1.0", path = "../redbpf-probes" }
redbpf-probes = { version = "2.2.0", path = "../redbpf-probes" }
# memoffset is needed by doctests
memoffset = "0.6"
10 changes: 5 additions & 5 deletions redbpf-probes/Cargo.toml
Expand Up @@ -3,21 +3,21 @@ name = "redbpf-probes"
description = "eBPF probe-related types for redbpf"
repository = "https://github.com/foniod/redbpf"
homepage = "https://foniod.org"
documentation = "https://docs.rs/redbpf-probes/2.1.0/redbpf_probes/"
documentation = "https://docs.rs/redbpf-probes/"
authors = ["Alessandro Decina <alessandro.d@gmail.com>", "Peter Parkanyi <p@symmetree.dev>", "Junyeong Jeong <rhdxmr@gmail.com>"]
version = "2.1.0"
version = "2.2.0"
edition = '2018'
keywords = ["bpf", "ebpf", "redbpf"]
license = "MIT OR Apache-2.0"

[dependencies]
cty = "0.2"
redbpf-macros = { version = "2.1.0", path = "../redbpf-macros" }
redbpf-macros = { version = "2.2.0", path = "../redbpf-macros" }
ufmt = { version = "0.1.0", default-features = false }

[build-dependencies]
cargo-bpf = { version = "2.1.0", path = "../cargo-bpf", default-features = false, features = ["bindings"] }
bpf-sys = { version = "2.1.0", path = "../bpf-sys" }
cargo-bpf = { version = "2.2.0", path = "../cargo-bpf", default-features = false, features = ["bindings"] }
bpf-sys = { version = "2.2.0", path = "../bpf-sys" }
syn = {version = "1.0", default-features = false, features = ["parsing", "visit"] }
quote = "1.0"
glob = "0.3.0"
Expand Down
6 changes: 3 additions & 3 deletions redbpf/Cargo.toml
@@ -1,10 +1,10 @@
[package]
name = "redbpf"
version = "2.1.0"
version = "2.2.0"
description = "eBPF build and userspace runtime library"
repository = "https://github.com/foniod/redbpf"
homepage = "https://foniod.org"
documentation = "https://docs.rs/redbpf/2.1.0/redbpf/"
documentation = "https://docs.rs/redbpf/"
authors = ["Peter Parkanyi <p@symmetree.dev>", "Alessandro Decina <alessandro.d@gmail.com>", "Junyeong Jeong <rhdxmr@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand All @@ -15,7 +15,7 @@ readme = "README.md"
maintenance = { status = "actively-developed" }

[dependencies]
bpf-sys = { path = "../bpf-sys", version = "2.1.0" }
bpf-sys = { path = "../bpf-sys", version = "2.2.0" }
goblin = "0.4"
zero = "0.1"
libc = "0.2"
Expand Down

0 comments on commit cd642e0

Please sign in to comment.