From c71e449f8ac59ae8f1d9aa6aa60c9b14bb08cc80 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Nov 2024 20:43:00 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 10 +++++----- Cargo.lock | 10 +++++----- crates/firehose-protos-examples/Cargo.toml | 2 +- crates/firehose-protos/CHANGELOG.md | 14 ++++++++++++++ crates/firehose-protos/Cargo.toml | 2 +- crates/flat-files-decoder/CHANGELOG.md | 8 ++++++++ crates/flat-files-decoder/Cargo.toml | 2 +- crates/header-accumulator/CHANGELOG.md | 18 ++++++++++++++++++ crates/header-accumulator/Cargo.toml | 2 +- crates/vee/Cargo.toml | 2 +- 10 files changed, 55 insertions(+), 15 deletions(-) create mode 100644 crates/firehose-protos/CHANGELOG.md create mode 100644 crates/flat-files-decoder/CHANGELOG.md create mode 100644 crates/header-accumulator/CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 6ef198a1..2d5f264b 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,7 +1,7 @@ { - "crates/vee": "0.1.0", - "crates/flat-files-decoder": "0.1.0", - "crates/header-accumulator": "0.1.0", - "crates/firehose-protos": "0.1.0", - "crates/firehose-protos-examples": "0.1.0" + "crates/vee": "0.1.1", + "crates/flat-files-decoder": "0.1.1", + "crates/header-accumulator": "0.2.0", + "crates/firehose-protos": "0.2.0", + "crates/firehose-protos-examples": "0.1.1" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 7c6cb318..7dfe89f1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1899,7 +1899,7 @@ dependencies = [ [[package]] name = "firehose-protos" -version = "0.1.0" +version = "0.2.0" dependencies = [ "alloy-consensus", "alloy-eip2930", @@ -1926,7 +1926,7 @@ dependencies = [ [[package]] name = "firehose-protos-examples" -version = "0.1.0" +version = "0.1.1" dependencies = [ "alloy-primitives", "firehose-client", @@ -1968,7 +1968,7 @@ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" [[package]] name = "flat-files-decoder" -version = "0.1.0" +version = "0.1.1" dependencies = [ "alloy-consensus", "alloy-eip2930", @@ -2312,7 +2312,7 @@ dependencies = [ [[package]] name = "header-accumulator" -version = "0.1.0" +version = "0.2.0" dependencies = [ "alloy-primitives", "base64 0.21.7", @@ -5697,7 +5697,7 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "vee" -version = "0.1.0" +version = "0.1.1" dependencies = [ "firehose-protos", "flat-files-decoder", diff --git a/crates/firehose-protos-examples/Cargo.toml b/crates/firehose-protos-examples/Cargo.toml index f88b5d83..e868e9c1 100644 --- a/crates/firehose-protos-examples/Cargo.toml +++ b/crates/firehose-protos-examples/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "firehose-protos-examples" -version = "0.1.0" +version = "0.1.1" edition = "2021" [dev-dependencies] diff --git a/crates/firehose-protos/CHANGELOG.md b/crates/firehose-protos/CHANGELOG.md new file mode 100644 index 00000000..d74a35b7 --- /dev/null +++ b/crates/firehose-protos/CHANGELOG.md @@ -0,0 +1,14 @@ +# Changelog + +## [0.2.0](https://github.com/semiotic-ai/veemon/compare/firehose-protos-v0.1.0...firehose-protos-v0.2.0) (2024-11-29) + + +### Features + +* make fn full_receipts public ([28be32a](https://github.com/semiotic-ai/veemon/commit/28be32a910beade2e10a4f6adb864e2f0ad8667d)) + + +### Bug Fixes + +* create forrestrie-examples crate to fix circular dependency ([6b704d9](https://github.com/semiotic-ai/veemon/commit/6b704d95ecc48d87cf17dd5161829b3c8f6eee3d)) +* **forrestrie-examples:** fix firehose-protos imports ([844d252](https://github.com/semiotic-ai/veemon/commit/844d2523e8240e84380f59a2fa7525b9a3eaffb5)) diff --git a/crates/firehose-protos/Cargo.toml b/crates/firehose-protos/Cargo.toml index 194c7bfd..822e7c73 100644 --- a/crates/firehose-protos/Cargo.toml +++ b/crates/firehose-protos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "firehose-protos" -version = "0.1.0" +version = "0.2.0" edition = "2021" [lib] diff --git a/crates/flat-files-decoder/CHANGELOG.md b/crates/flat-files-decoder/CHANGELOG.md new file mode 100644 index 00000000..3c26a561 --- /dev/null +++ b/crates/flat-files-decoder/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [0.1.1](https://github.com/semiotic-ai/veemon/compare/flat-files-decoder-v0.1.0...flat-files-decoder-v0.1.1) (2024-11-29) + + +### Bug Fixes + +* **flat-files-decoder:** include error message content in error messages ([e292f4c](https://github.com/semiotic-ai/veemon/commit/e292f4c85a4865436d466d9c88a7304f57f52047)) diff --git a/crates/flat-files-decoder/Cargo.toml b/crates/flat-files-decoder/Cargo.toml index 8dbe8ec7..18402461 100644 --- a/crates/flat-files-decoder/Cargo.toml +++ b/crates/flat-files-decoder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "flat-files-decoder" -version = "0.1.0" +version = "0.1.1" edition = "2021" [lib] diff --git a/crates/header-accumulator/CHANGELOG.md b/crates/header-accumulator/CHANGELOG.md new file mode 100644 index 00000000..413240c9 --- /dev/null +++ b/crates/header-accumulator/CHANGELOG.md @@ -0,0 +1,18 @@ +# Changelog + +## [0.2.0](https://github.com/semiotic-ai/veemon/compare/header-accumulator-v0.1.0...header-accumulator-v0.2.0) (2024-11-29) + + +### Features + +* add more information to errors ([5d03ad8](https://github.com/semiotic-ai/veemon/commit/5d03ad87b6885493bac639e81611ab224c2e0bb1)) + + +### Bug Fixes + +* create forrestrie-examples crate to fix circular dependency ([6b704d9](https://github.com/semiotic-ai/veemon/commit/6b704d95ecc48d87cf17dd5161829b3c8f6eee3d)) + + +### Performance Improvements + +* use capacity while creating inclusion proof vec ([3455ea4](https://github.com/semiotic-ai/veemon/commit/3455ea4addc53f1d4781ed60ac8953fc1354546d)) diff --git a/crates/header-accumulator/Cargo.toml b/crates/header-accumulator/Cargo.toml index f7de5ac5..b8672779 100644 --- a/crates/header-accumulator/Cargo.toml +++ b/crates/header-accumulator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "header-accumulator" -version = "0.1.0" +version = "0.2.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/crates/vee/Cargo.toml b/crates/vee/Cargo.toml index f8957dc4..7cfd098f 100644 --- a/crates/vee/Cargo.toml +++ b/crates/vee/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vee" -version = "0.1.0" +version = "0.1.1" edition = "2021" [lib]