From c22a6963d44befb5591d4b21c09767c43935cb54 Mon Sep 17 00:00:00 2001 From: Dave Tucker Date: Wed, 28 Feb 2024 12:38:19 +0000 Subject: [PATCH] Release aya-log-common v0.1.14, aya-log v0.2.0 --- aya-log-common/Cargo.toml | 2 +- aya-log-ebpf-macros/Cargo.toml | 2 +- aya-log-parser/Cargo.toml | 2 +- aya-log/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/aya-log-common/Cargo.toml b/aya-log-common/Cargo.toml index 6e877168..61efec0b 100644 --- a/aya-log-common/Cargo.toml +++ b/aya-log-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aya-log-common" -version = "0.1.13" +version = "0.1.14" description = "A logging library for eBPF programs." keywords = ["bpf", "ebpf", "log", "logging"] documentation = "https://docs.rs/aya-log" diff --git a/aya-log-ebpf-macros/Cargo.toml b/aya-log-ebpf-macros/Cargo.toml index 80e7801b..1f5ba106 100644 --- a/aya-log-ebpf-macros/Cargo.toml +++ b/aya-log-ebpf-macros/Cargo.toml @@ -9,7 +9,7 @@ homepage.workspace = true edition.workspace = true [dependencies] -aya-log-common = { path = "../aya-log-common", version = "0.1.13", default-features = false } +aya-log-common = { path = "../aya-log-common", version = "^0.1.14", default-features = false } aya-log-parser = { path = "../aya-log-parser", version = "0.1.13", default-features = false } proc-macro2 = { workspace = true } quote = { workspace = true } diff --git a/aya-log-parser/Cargo.toml b/aya-log-parser/Cargo.toml index 8ac68cfd..38a30d33 100644 --- a/aya-log-parser/Cargo.toml +++ b/aya-log-parser/Cargo.toml @@ -9,7 +9,7 @@ homepage.workspace = true edition.workspace = true [dependencies] -aya-log-common = { path = "../aya-log-common", version = "0.1.13", default-features = false } +aya-log-common = { path = "../aya-log-common", version = "^0.1.14", default-features = false } [lib] path = "src/lib.rs" diff --git a/aya-log/Cargo.toml b/aya-log/Cargo.toml index 34d0d6b6..43fc762b 100644 --- a/aya-log/Cargo.toml +++ b/aya-log/Cargo.toml @@ -13,7 +13,7 @@ edition.workspace = true [dependencies] aya = { path = "../aya", version = "^0.12.0", features = ["async_tokio"] } -aya-log-common = { path = "../aya-log-common", version = "0.1.13", default-features = false } +aya-log-common = { path = "../aya-log-common", version = "^0.1.14", default-features = false } bytes = { workspace = true } log = { workspace = true } thiserror = { workspace = true }