Skip to content

Commit 0f0c647

Browse files
0xNeshiLeoPatOZ
andauthored
Prepare for v0.1.0-alpha.3 release (#89)
Co-authored-by: Leo <[email protected]>
1 parent c4e76dc commit 0f0c647

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["OpenZeppelin"]
77
edition = "2024"
88
license = "AGPL-3.0-only"
99
repository = "https://github.com/OpenZeppelin/Event-Scanner"
10-
version = "0.1.0-alpha.2"
10+
version = "0.1.0-alpha.3"
1111

1212
[workspace.lints.clippy]
1313
pedantic = "warn"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Add `event-scanner` to your `Cargo.toml`:
5252

5353
```toml
5454
[dependencies]
55-
event-scanner = "0.1.0-alpha.2"
55+
event-scanner = "0.1.0-alpha.3"
5656
```
5757

5858
Create an event stream for the given event filters registered with the `EventScanner`:

tests/live_mode/reorg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ async fn reorg_rescans_events_with_ascending_blocks() -> anyhow::Result<()> {
144144
}
145145
};
146146

147-
_ = timeout(Duration::from_secs(2), event_counting).await;
147+
_ = timeout(Duration::from_secs(5), event_counting).await;
148148

149149
let final_blocks: Vec<_> = event_block_count.lock().await.clone();
150150
assert_eq!(final_blocks.len() as u64, initial_events + num_new_events);

0 commit comments

Comments
 (0)