From dbbc3e4628556284e396eb83fabdd9db016e2cfb Mon Sep 17 00:00:00 2001 From: Peter Parkanyi Date: Mon, 7 Dec 2020 11:58:10 +0000 Subject: [PATCH] Bump version number --- bpf-sys/Cargo.toml | 2 +- cargo-bpf/Cargo.toml | 6 +++--- cargo-bpf/src/new.rs | 6 +++--- redbpf-macros/Cargo.toml | 4 ++-- redbpf-probes/Cargo.toml | 4 ++-- redbpf-tools/Cargo.toml | 4 ++-- redbpf-tools/probes/Cargo.toml | 2 +- redbpf/Cargo.toml | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/bpf-sys/Cargo.toml b/bpf-sys/Cargo.toml index e2a1604a..f4f8ff66 100644 --- a/bpf-sys/Cargo.toml +++ b/bpf-sys/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bpf-sys" -version = "1.2.0" +version = "1.3.0" description = "Bindings for libbpf from BCC" repository = "https://github.com/redsift/redbpf" documentation = "https://ingraind.org/api//bpf_sys/" diff --git a/cargo-bpf/Cargo.toml b/cargo-bpf/Cargo.toml index 7654d890..d69ca8f3 100644 --- a/cargo-bpf/Cargo.toml +++ b/cargo-bpf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-bpf" -version = "1.2.0" +version = "1.3.0" description = "Cargo plugin to manage eBPF probes using redbpf" repository = "https://github.com/redsift/redbpf" documentation = "https://ingraind.org/api//cargo_bpf/" @@ -21,8 +21,8 @@ required-features = ["command-line"] clap = { version = "2.33", optional = true } bindgen = {version = "0.55", default-features = false, features = ["runtime"], optional = true} toml_edit = { version = "0.2", optional = true } -bpf-sys = { version = "^1.2.0", path = "../bpf-sys", optional = true } -redbpf = { version = "^1.2.0", path = "../redbpf", default-features = false, optional = true } +bpf-sys = { version = "^1.3.0", path = "../bpf-sys", optional = true } +redbpf = { version = "^1.3.0", path = "../redbpf", default-features = false, optional = true } futures = { version = "0.3", optional = true } tokio = { version = "^0.2.4", features = ["rt-core", "io-driver", "macros", "signal"], optional = true } hexdump = { version = "0.1", optional = true } diff --git a/cargo-bpf/src/new.rs b/cargo-bpf/src/new.rs index 54ca88ab..9ead0afc 100644 --- a/cargo-bpf/src/new.rs +++ b/cargo-bpf/src/new.rs @@ -31,11 +31,11 @@ edition = '2018' [dependencies] cty = "0.2" -redbpf-macros = "1.0" -redbpf-probes = "1.0" +redbpf-macros = "1.3" +redbpf-probes = "1.3" [build-dependencies] -cargo-bpf = {{ version = "1.0", default-features = false }} +cargo-bpf = {{ version = "1.3", default-features = false }} [features] default = [] diff --git a/redbpf-macros/Cargo.toml b/redbpf-macros/Cargo.toml index 168ebd44..08b65891 100644 --- a/redbpf-macros/Cargo.toml +++ b/redbpf-macros/Cargo.toml @@ -4,7 +4,7 @@ description = "Procedural macros for redbpf" repository = "https://github.com/redsift/redbpf" documentation = "https://ingraind.org/api//redbpf_macros/" authors = ["Alessandro Decina ", "Peter Parkanyi "] -version = "1.2.0" +version = "1.3.0" edition = '2018' keywords = ["bpf", "ebpf", "redbpf"] license = "MIT OR Apache-2.0" @@ -22,4 +22,4 @@ rustc_version = "0.3.0" [dev-dependencies] # redbpf-probes is needed by doctests -redbpf-probes = { version = "^1.2.0", path = "../redbpf-probes" } +redbpf-probes = { version = "^1.3.0", path = "../redbpf-probes" } diff --git a/redbpf-probes/Cargo.toml b/redbpf-probes/Cargo.toml index 02d0f6f8..68ff817a 100644 --- a/redbpf-probes/Cargo.toml +++ b/redbpf-probes/Cargo.toml @@ -4,7 +4,7 @@ description = "eBPF probe-related types for redbpf" repository = "https://github.com/redsift/redbpf" documentation = "https://ingraind.org/api//redbpf_probes/" authors = ["Alessandro Decina ", "Peter Parkanyi "] -version = "1.2.0" +version = "1.3.0" edition = '2018' keywords = ["bpf", "ebpf", "redbpf"] license = "MIT OR Apache-2.0" @@ -15,7 +15,7 @@ redbpf-macros = { version = "^1.0.1", path = "../redbpf-macros" } ufmt = { version = "0.1.0", default-features = false } [build-dependencies] -cargo-bpf = { version = "^1.2.0", path = "../cargo-bpf", default-features = false, features = ["bindings"] } +cargo-bpf = { version = "^1.3.0", path = "../cargo-bpf", default-features = false, features = ["bindings"] } syn = {version = "1.0", default-features = false, features = ["parsing", "visit"] } quote = "1.0" glob = "0.3.0" diff --git a/redbpf-tools/Cargo.toml b/redbpf-tools/Cargo.toml index 151ec716..d1fd8b31 100644 --- a/redbpf-tools/Cargo.toml +++ b/redbpf-tools/Cargo.toml @@ -5,11 +5,11 @@ authors = ["Alessandro Decina "] edition = "2018" [build-dependencies] -cargo-bpf = { version = "^1.2.0", path = "../cargo-bpf", default-features = false, features = ["build"] } +cargo-bpf = { version = "^1.3.0", path = "../cargo-bpf", default-features = false, features = ["build"] } [dependencies] probes = { path = "./probes" } -redbpf = { version = "^1.2.0", path = "../redbpf", features = ["load"] } +redbpf = { version = "^1.3.0", path = "../redbpf", features = ["load"] } tokio = { version = "^0.2.4", features = ["rt-core", "io-driver", "macros", "signal", "time"] } futures = "0.3" getopts = "0.2" diff --git a/redbpf-tools/probes/Cargo.toml b/redbpf-tools/probes/Cargo.toml index f0cb22f5..811d7dae 100644 --- a/redbpf-tools/probes/Cargo.toml +++ b/redbpf-tools/probes/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = '2018' [build-dependencies] -cargo-bpf = { version = "^1.2.0", path = "../../cargo-bpf", default-features = false, features = ["bindings"] } +cargo-bpf = { version = "^1.3.0", path = "../../cargo-bpf", default-features = false, features = ["bindings"] } glob = "0.3.0" [dependencies] diff --git a/redbpf/Cargo.toml b/redbpf/Cargo.toml index 30b26979..dfdcafaa 100644 --- a/redbpf/Cargo.toml +++ b/redbpf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redbpf" -version = "1.2.0" +version = "1.3.0" description = "eBPF build and runtime library" repository = "https://github.com/redsift/redbpf" documentation = "https://ingraind.org/api//redbpf/" @@ -15,7 +15,7 @@ circle-ci = { repository = "redsift/redbpf", branch = "master" } maintenance = { status = "actively-developed" } [dependencies] -bpf-sys = { path = "../bpf-sys", version = "^1.2.0" } +bpf-sys = { path = "../bpf-sys", version = "^1.3.0" } goblin = "0.2" zero = "0.1" libc = "0.2"