From dc325382752fa87f29419db72d53a80db0f5e441 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 19 Jul 2024 14:37:02 -0400 Subject: [PATCH] chore: release (#33) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.lock | 4 ++-- ghost-crab-common/CHANGELOG.md | 13 +++++++++++++ ghost-crab-macros/CHANGELOG.md | 9 +++++++++ ghost-crab-macros/Cargo.toml | 2 +- ghost-crab/CHANGELOG.md | 9 +++++++++ ghost-crab/Cargo.toml | 4 ++-- 6 files changed, 36 insertions(+), 5 deletions(-) create mode 100644 ghost-crab-common/CHANGELOG.md diff --git a/Cargo.lock b/Cargo.lock index 462fbca..9462549 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1276,7 +1276,7 @@ dependencies = [ [[package]] name = "ghost-crab" -version = "0.2.1" +version = "0.3.0" dependencies = [ "alloy", "async-trait", @@ -1308,7 +1308,7 @@ dependencies = [ [[package]] name = "ghost-crab-macros" -version = "0.1.2" +version = "0.1.3" dependencies = [ "ghost-crab-common", "proc-macro2", diff --git a/ghost-crab-common/CHANGELOG.md b/ghost-crab-common/CHANGELOG.md new file mode 100644 index 0000000..4ba0ca0 --- /dev/null +++ b/ghost-crab-common/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog +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.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.0](https://github.com/stakelens/ghost-crab/releases/tag/ghost-crab-common-v0.1.0) - 2024-07-19 + +### Other +- Adds license and description to ghost-crab-common +- Adds "ghost_crab_common" to share the config struct diff --git a/ghost-crab-macros/CHANGELOG.md b/ghost-crab-macros/CHANGELOG.md index 7c27c6d..0a5088a 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.3](https://github.com/stakelens/ghost-crab/compare/ghost-crab-macros-v0.1.2...ghost-crab-macros-v0.1.3) - 2024-07-19 + +### Other +- Adds step, network, start_block and execution_mode to "block_handler" +- Adds "network" to handler +- Adds execution_mode to handler +- Adds "ghost_crab_common" to share the config struct +- Adds "template" proc-macro and renames "handle" to "event_handler" + ## [0.1.2](https://github.com/stakelens/ghost-crab/compare/ghost-crab-macros-v0.1.1...ghost-crab-macros-v0.1.2) - 2024-07-13 ### Other diff --git a/ghost-crab-macros/Cargo.toml b/ghost-crab-macros/Cargo.toml index a93e602..f3db1c2 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.2" +version = "0.1.3" edition = "2021" license = "MIT" diff --git a/ghost-crab/CHANGELOG.md b/ghost-crab/CHANGELOG.md index bb4edb8..e6a5493 100644 --- a/ghost-crab/CHANGELOG.md +++ b/ghost-crab/CHANGELOG.md @@ -6,6 +6,15 @@ 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-v0.2.1...ghost-crab-v0.3.0) - 2024-07-19 + +### Other +- Adds step, network, start_block and execution_mode to "block_handler" +- Adds "network" to handler +- Adds execution_mode to handler +- Adds "ghost_crab_common" to share the config struct +- Adds "template" proc-macro and renames "handle" to "event_handler" + ## [0.2.1](https://github.com/stakelens/ghost-crab/compare/ghost-crab-v0.2.0...ghost-crab-v0.2.1) - 2024-07-13 ### Other diff --git a/ghost-crab/Cargo.toml b/ghost-crab/Cargo.toml index 629f828..710dab1 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.2.1" +version = "0.3.0" edition = "2021" license = "MIT" @@ -24,7 +24,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.2" } +ghost-crab-macros = { path = "../ghost-crab-macros", version = "0.1.3" } ghost-crab-common = { path = "../ghost-crab-common" } serde = { version = "1.0.203", features = ["derive"] } serde_json = "1.0.117"