diff --git a/CHANGELOG.md b/CHANGELOG.md index 7039a62..53a7165 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1](https://github.com/spacesprotocol/libveritas/compare/libveritas-v0.3.3...libveritas-v0.4.1) - 2026-08-14 + +### Features + +- Omit records with invalid signatures instead of failing + +### Style + +- Rustfmt + ## [0.4.0](https://github.com/spacesprotocol/libveritas/compare/libveritas-v0.3.3...libveritas-v0.4.0) - 2026-08-14 ### Features diff --git a/Cargo.lock b/Cargo.lock index dbae01b..57e4bde 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1357,7 +1357,7 @@ dependencies = [ [[package]] name = "libveritas" -version = "0.4.0" +version = "0.4.1" dependencies = [ "base64 0.22.1", "bitcoin", @@ -1377,7 +1377,7 @@ dependencies = [ [[package]] name = "libveritas-python" -version = "0.4.0" +version = "0.4.1" dependencies = [ "libveritas-uniffi", "uniffi", @@ -1385,7 +1385,7 @@ dependencies = [ [[package]] name = "libveritas-uniffi" -version = "0.4.0" +version = "0.4.1" dependencies = [ "libveritas", "serde", @@ -1399,7 +1399,7 @@ dependencies = [ [[package]] name = "libveritas-wasm" -version = "0.4.0" +version = "0.4.1" dependencies = [ "js-sys", "libveritas", @@ -1420,7 +1420,7 @@ dependencies = [ [[package]] name = "libveritas_testutil" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bitcoin", "borsh", diff --git a/Cargo.toml b/Cargo.toml index 00def22..643468d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["methods", "zk", "veritas", "testutil", "bindings/wasm", "bindings/uniffi", "bindings/python"] [workspace.package] -version = "0.4.0" +version = "0.4.1" edition = "2024" rust-version = "1.85" license = "Apache-2.0" @@ -13,7 +13,7 @@ authors = ["Buffrr "] [workspace.dependencies] # Internal crates -libveritas = { path = "veritas", version = "0.4.0" } +libveritas = { path = "veritas", version = "0.4.1" } libveritas_zk = { path = "zk", version = "0.1" } # External