diff --git a/Cargo.lock b/Cargo.lock index 32c04e4..17029c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1977,7 +1977,7 @@ dependencies = [ [[package]] name = "indexer-db" -version = "0.0.9" +version = "0.0.10" dependencies = [ "alloy", "serde", @@ -2124,7 +2124,7 @@ checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" [[package]] name = "listener" -version = "0.0.6" +version = "0.0.7" dependencies = [ "alloy", "indexer-db", @@ -2614,7 +2614,7 @@ dependencies = [ [[package]] name = "processor" -version = "0.0.7" +version = "0.0.8" dependencies = [ "alloy", "indexer-db", diff --git a/libs/indexer-db/CHANGELOG.md b/libs/indexer-db/CHANGELOG.md index 1ef004b..5ba31a0 100644 --- a/libs/indexer-db/CHANGELOG.md +++ b/libs/indexer-db/CHANGELOG.md @@ -1,3 +1,18 @@ +## 0.0.10 (2024-12-14) + +### 🩹 Fixes + +- continuosly loop over all logs to process ([d2974b8](https://github.com/abhinavmsra/indexer-rs/commit/d2974b8)) + +### 📖 Documentation + +- add details on how to run migrations ([1f826f2](https://github.com/abhinavmsra/indexer-rs/commit/1f826f2)) +- create comprehensive project documentation ([51638dd](https://github.com/abhinavmsra/indexer-rs/commit/51638dd)) + +### ❤️ Thank You + +- Abhinav Mishra @abhinavmsra + ## 0.0.9 (2024-12-13) ### 🩹 Fixes diff --git a/libs/indexer-db/Cargo.toml b/libs/indexer-db/Cargo.toml index 4294d61..c393294 100644 --- a/libs/indexer-db/Cargo.toml +++ b/libs/indexer-db/Cargo.toml @@ -1,7 +1,7 @@ [package] name = 'indexer-db' -version = '0.0.9' +version = '0.0.10' edition = '2021' [dependencies] diff --git a/listener/CHANGELOG.md b/listener/CHANGELOG.md index 7511e74..72eae4a 100644 --- a/listener/CHANGELOG.md +++ b/listener/CHANGELOG.md @@ -1,3 +1,22 @@ +## 0.0.7 (2024-12-14) + +### 🩹 Fixes + +- continuosly loop over all logs to process ([d2974b8](https://github.com/abhinavmsra/indexer-rs/commit/d2974b8)) + +### 📖 Documentation + +- add details on how to run migrations ([1f826f2](https://github.com/abhinavmsra/indexer-rs/commit/1f826f2)) +- create comprehensive project documentation ([51638dd](https://github.com/abhinavmsra/indexer-rs/commit/51638dd)) + +### 🧱 Updated Dependencies + +- Updated indexer-db to 0.0.10 + +### ❤️ Thank You + +- Abhinav Mishra @abhinavmsra + ## 0.0.6 (2024-12-13) ### 🩹 Fixes diff --git a/listener/Cargo.toml b/listener/Cargo.toml index 6fbc2d2..1514bf9 100644 --- a/listener/Cargo.toml +++ b/listener/Cargo.toml @@ -1,13 +1,13 @@ [package] name = 'listener' -version = '0.0.6' +version = '0.0.7' edition = '2021' [dependencies] alloy = { workspace = true } tokio = { workspace = true } -indexer-db = { path = '../libs/indexer-db', version = '0.0.9' } +indexer-db = { path = '../libs/indexer-db', version = '0.0.10' } thiserror = { workspace = true } tower = { version = '0.5.1', features = ['limit', 'util'] } sqlx = { workspace = true } diff --git a/processor/CHANGELOG.md b/processor/CHANGELOG.md index c3140c8..8583fd9 100644 --- a/processor/CHANGELOG.md +++ b/processor/CHANGELOG.md @@ -1,3 +1,22 @@ +## 0.0.8 (2024-12-14) + +### 🩹 Fixes + +- continuosly loop over all logs to process ([d2974b8](https://github.com/abhinavmsra/indexer-rs/commit/d2974b8)) + +### 📖 Documentation + +- add details on how to run migrations ([1f826f2](https://github.com/abhinavmsra/indexer-rs/commit/1f826f2)) +- create comprehensive project documentation ([51638dd](https://github.com/abhinavmsra/indexer-rs/commit/51638dd)) + +### 🧱 Updated Dependencies + +- Updated indexer-db to 0.0.10 + +### ❤️ Thank You + +- Abhinav Mishra @abhinavmsra + ## 0.0.7 (2024-12-13) ### 🩹 Fixes diff --git a/processor/Cargo.toml b/processor/Cargo.toml index 6b7a28c..2116bff 100644 --- a/processor/Cargo.toml +++ b/processor/Cargo.toml @@ -1,12 +1,12 @@ [package] name = 'processor' -version = '0.0.7' +version = '0.0.8' edition = '2021' [dependencies] alloy = { workspace = true } -indexer-db = { path = '../libs/indexer-db', version = '0.0.9' } +indexer-db = { path = '../libs/indexer-db', version = '0.0.10' } serde = { workspace = true } serde_json = { workspace = true } thiserror = { workspace = true }