From e6938a907831d3bf60cbdc92d0f4604297c34b3f Mon Sep 17 00:00:00 2001 From: Huang-Huang Bao Date: Thu, 21 Nov 2024 01:37:55 +0800 Subject: [PATCH] chore(release): prepare for v0.1.4 --- CHANGELOG.md | 12 ++++++++++++ Cargo.lock | 2 +- Cargo.toml | 6 ++++-- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1399a4b..dc0cbcc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. +## [0.1.4] - 2024-11-20 + +This is a hotfix addressing build error on Rust 1.80 on which is the minimal version that einat requires to build. + +### ๐Ÿ› Bug Fixes + +- Elided lifetimes in associated constant + +### ๐Ÿงช Testing + +- Add tests for einat skel + ## [0.1.3] - 2024-11-19 ### Highlights diff --git a/Cargo.lock b/Cargo.lock index d4db98b..ef68001 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -367,7 +367,7 @@ dependencies = [ [[package]] name = "einat" -version = "0.1.3" +version = "0.1.4" dependencies = [ "anyhow", "async-stream", diff --git a/Cargo.toml b/Cargo.toml index 7e6a606..182a611 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "einat" -version = "0.1.3" +version = "0.1.4" edition = "2021" license = "GPL-2.0" authors = ["Huang-Huang Bao "] @@ -39,7 +39,9 @@ bindgen = ["libbpf-sys?/bindgen"] static = ["libbpf-sys?/static"] # # libbpf is vendrored and static in any case. -# +# Note currently there is a bug in libbpf-sys that prevent static linking if +# system libbpf is present, delete system libbpf or /path/to/pkgconfig/libbpf.pc +# to work around it. See https://github.com/libbpf/libbpf-sys/issues/112 [dependencies] anyhow = "1.0.93"