release 0.4.1 (#388)

Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
This commit is contained in:
xermicus
2025-10-08 14:04:48 +02:00
committed by GitHub
parent 93c6387dae
commit 2090830858
13 changed files with 554 additions and 448 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "revive-common"
version = "0.2.0"
version = "0.2.1"
license.workspace = true
edition.workspace = true
repository.workspace = true
+2 -2
View File
@@ -30,8 +30,8 @@ impl FromStr for ObjectFormat {
"PVM" => Ok(Self::PVM),
_ => anyhow::bail!(
"Unknown object format: {value}. Supported formats: {}, {}",
Self::ELF.to_string(),
Self::PVM.to_string()
Self::ELF,
Self::PVM,
),
}
}