diff --git a/libs/indexer-db/CHANGELOG.md b/libs/indexer-db/CHANGELOG.md index d234915..c71d9de 100644 --- a/libs/indexer-db/CHANGELOG.md +++ b/libs/indexer-db/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.0.5 (2024-12-11) + +### 🩹 Fixes + +- add missing columns & fix inserts ([3c48682](https://github.com/abhinavmsra/indexer-rs/commit/3c48682)) + +### ❤️ Thank You + +- Abhinav Mishra @abhinavmsra + ## 0.0.4 (2024-12-11) ### 🩹 Fixes diff --git a/libs/indexer-db/Cargo.toml b/libs/indexer-db/Cargo.toml index cce7348..342269d 100644 --- a/libs/indexer-db/Cargo.toml +++ b/libs/indexer-db/Cargo.toml @@ -1,7 +1,7 @@ [package] name = 'indexer-db' -version = '0.0.4' +version = '0.0.5' edition = '2021' [dependencies] diff --git a/listener/Cargo.toml b/listener/Cargo.toml index c216f7c..406f212 100644 --- a/listener/Cargo.toml +++ b/listener/Cargo.toml @@ -7,6 +7,6 @@ edition = '2021' [dependencies] alloy = { workspace = true } tokio = { workspace = true } -indexer-db = { path = '../libs/indexer-db', version = '0.0.4' } +indexer-db = { path = '../libs/indexer-db', version = '0.0.5' } tower = { version = '0.5.1', features = ['limit', 'util'] } sqlx = { workspace = true } diff --git a/processor/Cargo.toml b/processor/Cargo.toml index e2d3491..b7dda1b 100644 --- a/processor/Cargo.toml +++ b/processor/Cargo.toml @@ -7,7 +7,7 @@ edition = '2021' [dependencies] Inflector = '0.11.4' alloy = { workspace = true } -indexer-db = { path = '../libs/indexer-db', version = '0.0.4' } +indexer-db = { path = '../libs/indexer-db', version = '0.0.5' } serde = '1.0.215' serde_json = '1.0.133' tokio = { workspace = true }