diff --git a/aya-log-ebpf-macros/CHANGELOG.md b/aya-log-ebpf-macros/CHANGELOG.md index 161fa628..eb24e948 100644 --- a/aya-log-ebpf-macros/CHANGELOG.md +++ b/aya-log-ebpf-macros/CHANGELOG.md @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## v0.1.0 (2024-04-12) + + + + + + + + + + + + + + + + ### Chore - Don't use path deps in workspace @@ -23,6 +39,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - homepage - edition +### Chore + + - add missing changelogs + ### New Features - check format and value type in proc macro @@ -130,8 +150,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - - 33 commits contributed to the release over the course of 621 calendar days. - - 16 commits were understood as [conventional](https://www.conventionalcommits.org). + - 35 commits contributed to the release over the course of 623 calendar days. + - 17 commits were understood as [conventional](https://www.conventionalcommits.org). - 0 issues like '(#ID)' were seen in commit messages ### Commit Details @@ -141,6 +161,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** + - Release aya-log-parser v0.1.13 ([`04ee35d`](https://github.com/aya-rs/aya/commit/04ee35d1392ab7dc2d97c6e0f1449e98b1283ffe)) + - Add missing changelogs ([`1d515fe`](https://github.com/aya-rs/aya/commit/1d515fe810c6e646ca405d8f97803698deda148c)) - Release aya-log-common v0.1.14, aya-log v0.2.0 ([`c22a696`](https://github.com/aya-rs/aya/commit/c22a6963d44befb5591d4b21c09767c43935cb54)) - Don't use path deps in workspace ([`13b1fc6`](https://github.com/aya-rs/aya/commit/13b1fc63ef2ae083ba03ce9de24cb4f31f989d21)) - Merge pull request #882 from dave-tucker/metadata ([`0fadd69`](https://github.com/aya-rs/aya/commit/0fadd695377b8a3f0d9a3af3bc8140f0f1bed8d2)) diff --git a/ebpf/aya-log-ebpf/Cargo.toml b/ebpf/aya-log-ebpf/Cargo.toml index 00dc032b..d33f7029 100644 --- a/ebpf/aya-log-ebpf/Cargo.toml +++ b/ebpf/aya-log-ebpf/Cargo.toml @@ -11,7 +11,7 @@ edition.workspace = true [dependencies] aya-ebpf = { version = "^0.1.0", path = "../aya-ebpf" } aya-log-common = { version = "0.1.14", path = "../../aya-log-common" } -aya-log-ebpf-macros = { version = "0.1.0", path = "../../aya-log-ebpf-macros" } +aya-log-ebpf-macros = { version = "^0.1.0", path = "../../aya-log-ebpf-macros" } [lib] path = "src/lib.rs"