Browse Source

Release aya-log-common v0.1.15, aya-log-ebpf v0.1.1

Dave Tucker 5 months ago
parent
commit
04bbbccffa

+ 10 - 3
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)
+
+<csr-id-a75fc2f7691dad21822c2eff35281abd3c4b5d23/>
 
 ### 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
+
+ - <csr-id-c3f0c7dc3fb285da091454426eeda0723389f0f1/> Prepare for aya-log-ebpf release
+
 ### Commit Statistics
 
 <csr-read-only-do-not-edit/>
 
- - 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
 <details><summary>view details</summary>
 
  * **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))
 </details>

+ 1 - 1
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"

+ 1 - 1
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 }

+ 8 - 3
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
+
+ - <csr-id-c3f0c7dc3fb285da091454426eeda0723389f0f1/> Prepare for aya-log-ebpf release
+
 ### Commit Statistics
 
 <csr-read-only-do-not-edit/>
 
- - 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.
 <details><summary>view details</summary>
 
  * **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))
 </details>
 

+ 2 - 2
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]