Skip to content

Commit

Permalink
chore(release): publish
Browse files Browse the repository at this point in the history
- project: indexer-db 0.0.3

- project: listener 0.0.1
  • Loading branch information
abhinavmsra committed Dec 7, 2024
1 parent 21f5ab0 commit 20cce8d
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 9 deletions.
12 changes: 12 additions & 0 deletions libs/indexer-db/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.0.3 (2024-12-07)

### 🩹 Fixes

- create listener service ([b33adfe](https://github.com/abhinavmsra/indexer-rs/commit/b33adfe))
- create evm logs table ([4c9ae02](https://github.com/abhinavmsra/indexer-rs/commit/4c9ae02))
- add listener crate ([5d77961](https://github.com/abhinavmsra/indexer-rs/commit/5d77961))

### ❤️ Thank You

- Abhinav Mishra @abhinavmsra

## 0.0.2 (2024-12-02)

### 🩹 Fixes
Expand Down
6 changes: 3 additions & 3 deletions libs/indexer-db/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

[package]
name = 'indexer-db'
version = '0.0.2'
version = '0.0.3'
edition = '2021'

[dependencies]
alloy = { workspace = true }
serde = "1.0.215"
serde_json = "1.0.133"
serde = '1.0.215'
serde_json = '1.0.133'
sqlx = { workspace = true }
14 changes: 14 additions & 0 deletions listener/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 0.0.1 (2024-12-07)

### 🩹 Fixes

- create listener service ([b33adfe](https://github.com/abhinavmsra/indexer-rs/commit/b33adfe))
- add listener crate ([5d77961](https://github.com/abhinavmsra/indexer-rs/commit/5d77961))

### 🧱 Updated Dependencies

- Updated indexer-db to 0.0.3

### ❤️ Thank You

- Abhinav Mishra @abhinavmsra
12 changes: 6 additions & 6 deletions listener/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

[package]
name = "listener"
version = "0.1.0"
edition = "2021"
name = 'listener'
version = '0.0.1'
edition = '2021'

[dependencies]
alloy = { workspace = true }
tokio = { workspace = true }

indexer-db = { path = '../libs/indexer-db', version = '0.0.2' }
tower = { version = "0.5.1", features = ["limit", "util"] }
indexer-db = { path = '../libs/indexer-db', version = '0.0.3' }
tower = { version = '0.5.1', features = ['limit', 'util'] }
sqlx = { workspace = true }

0 comments on commit 20cce8d

Please sign in to comment.