From 5135ff6f76538587cf6a297b5d31b9eda37e8ec9 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 27 Jul 2024 00:45:05 -0400 Subject: [PATCH] chore: release (#49) --- Cargo.lock | 4 ++-- ghost-crab-macros/CHANGELOG.md | 5 +++++ ghost-crab-macros/Cargo.toml | 2 +- ghost-crab/CHANGELOG.md | 8 ++++++++ ghost-crab/Cargo.toml | 4 ++-- 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 87d8923..4cb69b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1277,7 +1277,7 @@ dependencies = [ [[package]] name = "ghost-crab" -version = "0.8.0" +version = "0.9.0" dependencies = [ "alloy", "async-trait", @@ -1308,7 +1308,7 @@ dependencies = [ [[package]] name = "ghost-crab-macros" -version = "0.1.6" +version = "0.1.7" dependencies = [ "ghost-crab-common", "proc-macro2", diff --git a/ghost-crab-macros/CHANGELOG.md b/ghost-crab-macros/CHANGELOG.md index 59ad821..4b6d6bd 100644 --- a/ghost-crab-macros/CHANGELOG.md +++ b/ghost-crab-macros/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.7](https://github.com/stakelens/ghost-crab/compare/ghost-crab-macros-v0.1.6...ghost-crab-macros-v0.1.7) - 2024-07-26 + +### Other +- Use ".expect" instead of ".unwrap()" inside ghost-crab-macros + ## [0.1.6](https://github.com/stakelens/ghost-crab/compare/ghost-crab-macros-v0.1.5...ghost-crab-macros-v0.1.6) - 2024-07-26 ### Added diff --git a/ghost-crab-macros/Cargo.toml b/ghost-crab-macros/Cargo.toml index c2f082e..994414f 100644 --- a/ghost-crab-macros/Cargo.toml +++ b/ghost-crab-macros/Cargo.toml @@ -5,7 +5,7 @@ proc-macro = true [package] name = "ghost-crab-macros" description = "macros for ghost-crab" -version = "0.1.6" +version = "0.1.7" edition = "2021" license = "MIT" diff --git a/ghost-crab/CHANGELOG.md b/ghost-crab/CHANGELOG.md index 47963be..3912ac1 100644 --- a/ghost-crab/CHANGELOG.md +++ b/ghost-crab/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.9.0](https://github.com/stakelens/ghost-crab/compare/ghost-crab-v0.8.0...ghost-crab-v0.9.0) - 2024-07-26 + +### Added +- *(indexer)* add InvalidAddress error handling to load_event_handler + +### Other +- Improve indexer errors and file structure + ## [0.8.0](https://github.com/stakelens/ghost-crab/compare/ghost-crab-v0.7.1...ghost-crab-v0.8.0) - 2024-07-26 ### Added diff --git a/ghost-crab/Cargo.toml b/ghost-crab/Cargo.toml index 62d7755..79bf4de 100644 --- a/ghost-crab/Cargo.toml +++ b/ghost-crab/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ghost-crab" description = "ethereum indexer SDK 👻🦀" -version = "0.8.0" +version = "0.9.0" edition = "2021" license = "MIT" @@ -25,7 +25,7 @@ hyper = { version = "1.3.1", features = ["full"] } hyper-tls = "0.6.0" hyper-util = { version = "0.1.5", features = ["full"] } blake3 = "1.5.1" -ghost-crab-macros = { path = "../ghost-crab-macros", version = "0.1.6" } +ghost-crab-macros = { path = "../ghost-crab-macros", version = "0.1.7" } ghost-crab-common = { path = "../ghost-crab-common", version = "0.3.0" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117"