Skip to content

Commit

Permalink
chore: release (#47)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Jul 26, 2024
1 parent 14a9005 commit ca50ebd
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions ghost-crab-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ghost-crab-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"

Expand Down
9 changes: 9 additions & 0 deletions ghost-crab-macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions ghost-crab-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand All @@ -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" }
10 changes: 10 additions & 0 deletions ghost-crab/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions ghost-crab/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ghost-crab"
description = "ethereum indexer SDK 👻🦀"
version = "0.7.1"
version = "0.8.0"
edition = "2021"
license = "MIT"

Expand All @@ -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"
Expand Down

0 comments on commit ca50ebd

Please sign in to comment.