Skip to content

Commit

Permalink
Release aya-log-common v0.1.15, aya-log-ebpf v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-tucker committed Oct 9, 2024
1 parent c3f0c7d commit 04bbbcc
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 10 deletions.
13 changes: 10 additions & 3 deletions aya-log-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand All @@ -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>
Expand Down
2 changes: 1 addition & 1 deletion aya-log-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion aya-log/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
11 changes: 8 additions & 3 deletions ebpf/aya-log-ebpf/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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>

Expand Down
4 changes: 2 additions & 2 deletions ebpf/aya-log-ebpf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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]
Expand Down

0 comments on commit 04bbbcc

Please sign in to comment.