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

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Parkanyi committed Dec 7, 2020
1 parent 684762b commit dbbc3e4
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion bpf-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand Down
6 changes: 3 additions & 3 deletions cargo-bpf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand All @@ -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 }
Expand Down
6 changes: 3 additions & 3 deletions cargo-bpf/src/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []
Expand Down
4 changes: 2 additions & 2 deletions redbpf-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <alessandro.d@gmail.com>", "Peter Parkanyi <peter@redsift.io>"]
version = "1.2.0"
version = "1.3.0"
edition = '2018'
keywords = ["bpf", "ebpf", "redbpf"]
license = "MIT OR Apache-2.0"
Expand All @@ -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" }
4 changes: 2 additions & 2 deletions redbpf-probes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <alessandro.d@gmail.com>", "Peter Parkanyi <peter@redsift.io>"]
version = "1.2.0"
version = "1.3.0"
edition = '2018'
keywords = ["bpf", "ebpf", "redbpf"]
license = "MIT OR Apache-2.0"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions redbpf-tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ authors = ["Alessandro Decina <alessandro.d@gmail.com>"]
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"
Expand Down
2 changes: 1 addition & 1 deletion redbpf-tools/probes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
4 changes: 2 additions & 2 deletions redbpf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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/"
Expand All @@ -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"
Expand Down

0 comments on commit dbbc3e4

Please sign in to comment.