From ca50ebdfe82aa0271ac07128384569d20110afc0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 14:05:27 -0400 Subject: [PATCH] chore: release (#47) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.lock | 6 +++--- ghost-crab-common/CHANGELOG.md | 5 +++++ ghost-crab-common/Cargo.toml | 2 +- ghost-crab-macros/CHANGELOG.md | 9 +++++++++ ghost-crab-macros/Cargo.toml | 4 ++-- ghost-crab/CHANGELOG.md | 10 ++++++++++ ghost-crab/Cargo.toml | 6 +++--- 7 files changed, 33 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a039edc..87d8923 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1277,7 +1277,7 @@ dependencies = [ [[package]] name = "ghost-crab" -version = "0.7.1" +version = "0.8.0" dependencies = [ "alloy", "async-trait", @@ -1299,7 +1299,7 @@ dependencies = [ [[package]] name = "ghost-crab-common" -version = "0.2.2" +version = "0.3.0" dependencies = [ "dotenvy", "serde", @@ -1308,7 +1308,7 @@ dependencies = [ [[package]] name = "ghost-crab-macros" -version = "0.1.5" +version = "0.1.6" dependencies = [ "ghost-crab-common", "proc-macro2", diff --git a/ghost-crab-common/CHANGELOG.md b/ghost-crab-common/CHANGELOG.md index e9b4ee2..9866b5a 100644 --- a/ghost-crab-common/CHANGELOG.md +++ b/ghost-crab-common/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/stakelens/ghost-crab/compare/ghost-crab-common-v0.2.2...ghost-crab-common-v0.3.0) - 2024-07-26 + +### Added +- load block handler config dynamically at runtime + ## [0.2.2](https://github.com/stakelens/ghost-crab/compare/ghost-crab-common-v0.2.1...ghost-crab-common-v0.2.2) - 2024-07-25 ### Added diff --git a/ghost-crab-common/Cargo.toml b/ghost-crab-common/Cargo.toml index 1d6f114..108ec68 100644 --- a/ghost-crab-common/Cargo.toml +++ b/ghost-crab-common/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ghost-crab-common" description = "ghost-crab common" -version = "0.2.2" +version = "0.3.0" edition = "2021" license = "MIT" diff --git a/ghost-crab-macros/CHANGELOG.md b/ghost-crab-macros/CHANGELOG.md index fa87528..59ad821 100644 --- a/ghost-crab-macros/CHANGELOG.md +++ b/ghost-crab-macros/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 +- Load "event_handler" config dynamically at runtime +- load block handler config dynamically at runtime + +### Other +- Refactor indexer and add errors + ## [0.1.5](https://github.com/stakelens/ghost-crab/compare/ghost-crab-macros-v0.1.4...ghost-crab-macros-v0.1.5) - 2024-07-25 ### Added diff --git a/ghost-crab-macros/Cargo.toml b/ghost-crab-macros/Cargo.toml index 6f12ce2..c2f082e 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.5" +version = "0.1.6" edition = "2021" license = "MIT" @@ -15,4 +15,4 @@ quote = "1.0.36" serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" syn = { version = "2.0.66", features = ["full"] } -ghost-crab-common = { path = "../ghost-crab-common", version = "0.2.2" } +ghost-crab-common = { path = "../ghost-crab-common", version = "0.3.0" } diff --git a/ghost-crab/CHANGELOG.md b/ghost-crab/CHANGELOG.md index a094fab..47963be 100644 --- a/ghost-crab/CHANGELOG.md +++ b/ghost-crab/CHANGELOG.md @@ -6,6 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.0](https://github.com/stakelens/ghost-crab/compare/ghost-crab-v0.7.1...ghost-crab-v0.8.0) - 2024-07-26 + +### Added +- Load "event_handler" config dynamically at runtime +- load block handler config dynamically at runtime + +### Other +- Refactor "get_provider" +- Refactor indexer and add errors + ## [0.7.1](https://github.com/stakelens/ghost-crab/compare/ghost-crab-v0.7.0...ghost-crab-v0.7.1) - 2024-07-26 ### Added diff --git a/ghost-crab/Cargo.toml b/ghost-crab/Cargo.toml index 05acb04..62d7755 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.7.1" +version = "0.8.0" edition = "2021" license = "MIT" @@ -25,8 +25,8 @@ 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.5" } -ghost-crab-common = { path = "../ghost-crab-common", version = "0.2.2" } +ghost-crab-macros = { path = "../ghost-crab-macros", version = "0.1.6" } +ghost-crab-common = { path = "../ghost-crab-common", version = "0.3.0" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117" rocksdb = "0.22.0"