From 04bbbccffa6298dbfeb967ca9967611e283ac81d Mon Sep 17 00:00:00 2001 From: Dave Tucker Date: Wed, 9 Oct 2024 11:56:59 +0100 Subject: [PATCH] Release aya-log-common v0.1.15, aya-log-ebpf v0.1.1 --- aya-log-common/CHANGELOG.md | 13 ++++++++++--- aya-log-common/Cargo.toml | 2 +- aya-log/Cargo.toml | 2 +- ebpf/aya-log-ebpf/CHANGELOG.md | 11 ++++++++--- ebpf/aya-log-ebpf/Cargo.toml | 4 ++-- 5 files changed, 22 insertions(+), 10 deletions(-) diff --git a/aya-log-common/CHANGELOG.md b/aya-log-common/CHANGELOG.md index e6691326..e2e10823 100644 --- a/aya-log-common/CHANGELOG.md +++ b/aya-log-common/CHANGELOG.md @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 0.1.15 (2024-10-09) + + ### Other @@ -19,13 +21,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Add support for formatting `[u8; 4]`, to be able to handle `Ipv4Addr::octets`. +### Chore + + - Prepare for aya-log-ebpf release + ### Commit Statistics - - 2 commits contributed to the release. + - 3 commits contributed to the release. - 223 days passed between releases. - - 1 commit was understood as [conventional](https://www.conventionalcommits.org). + - 2 commits were understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages ### Commit Details @@ -35,6 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** + - Prepare for aya-log-ebpf release ([`c3f0c7d`](https://github.com/aya-rs/aya/commit/c3f0c7dc3fb285da091454426eeda0723389f0f1)) - Allow logging `core::net::Ipv4Addr` and `core::net::Ipv6Addr` ([`a75fc2f`](https://github.com/aya-rs/aya/commit/a75fc2f7691dad21822c2eff35281abd3c4b5d23)) - Appease clippy ([`09442c2`](https://github.com/aya-rs/aya/commit/09442c2cbe9513365dfc1df8d4f7cf6f808a67ed))
diff --git a/aya-log-common/Cargo.toml b/aya-log-common/Cargo.toml index 61efec0b..24d4606f 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.14" +version = "0.1.15" description = "A logging library for eBPF programs." keywords = ["bpf", "ebpf", "log", "logging"] documentation = "https://docs.rs/aya-log" diff --git a/aya-log/Cargo.toml b/aya-log/Cargo.toml index cfd87420..4aef4b91 100644 --- a/aya-log/Cargo.toml +++ b/aya-log/Cargo.toml @@ -13,7 +13,7 @@ edition.workspace = true [dependencies] aya = { path = "../aya", version = "^0.13.0", features = ["async_tokio"] } -aya-log-common = { path = "../aya-log-common", version = "^0.1.14", default-features = false } +aya-log-common = { path = "../aya-log-common", version = "^0.1.15", default-features = false } bytes = { workspace = true } log = { workspace = true } thiserror = { workspace = true } diff --git a/ebpf/aya-log-ebpf/CHANGELOG.md b/ebpf/aya-log-ebpf/CHANGELOG.md index 73445aba..d25856d3 100644 --- a/ebpf/aya-log-ebpf/CHANGELOG.md +++ b/ebpf/aya-log-ebpf/CHANGELOG.md @@ -5,17 +5,21 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 0.1.1 (2024-10-09) Maintenance release. Update to latest aya-ebpf version v0.1.1. +### Chore + + - Prepare for aya-log-ebpf release + ### Commit Statistics - - 1 commit contributed to the release. + - 2 commits contributed to the release. - 179 days passed between releases. - - 0 commits were understood as [conventional](https://www.conventionalcommits.org). + - 1 commit was understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages ### Commit Details @@ -25,6 +29,7 @@ Maintenance release. Update to latest aya-ebpf version v0.1.1.
view details * **Uncategorized** + - Prepare for aya-log-ebpf release ([`c3f0c7d`](https://github.com/aya-rs/aya/commit/c3f0c7dc3fb285da091454426eeda0723389f0f1)) - Release aya-ebpf-cty v0.2.2, aya-ebpf-bindings v0.1.1, aya-ebpf-macros v0.1.1, aya-ebpf v0.1.1 ([`59082f5`](https://github.com/aya-rs/aya/commit/59082f572c01e8356312ed53bdb818cfbea944b5))
diff --git a/ebpf/aya-log-ebpf/Cargo.toml b/ebpf/aya-log-ebpf/Cargo.toml index dedd4d24..5b23afbb 100644 --- a/ebpf/aya-log-ebpf/Cargo.toml +++ b/ebpf/aya-log-ebpf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "aya-log-ebpf" -version = "0.1.0" +version = "0.1.1" description = "Logging for eBPF programs" authors.workspace = true license.workspace = true @@ -10,7 +10,7 @@ edition.workspace = true [dependencies] aya-ebpf = { version = "^0.1.1", path = "../aya-ebpf" } -aya-log-common = { version = "0.1.14", path = "../../aya-log-common" } +aya-log-common = { version = "^0.1.15", path = "../../aya-log-common" } aya-log-ebpf-macros = { version = "^0.1.0", path = "../../aya-log-ebpf-macros" } [lib]