diff --git a/abigen-tests/Cargo.toml b/abigen-tests/Cargo.toml index c499386..aa5e693 100644 --- a/abigen-tests/Cargo.toml +++ b/abigen-tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substreams-ethereum-abigen-tests" -version = "0.2.1-rc" +version = "0.1.0" edition = "2021" description = "Tests package meant to test the generated code of the abigen" publish = false @@ -12,11 +12,11 @@ num-bigint = "0.4.3" prost = { version = "^0.11.0" } prost-types = "^0.11.0" substreams = { version = "~0.0.20" } -substreams-ethereum = { version = "0.2.1-rc", path = "../substreams-ethereum" } +substreams-ethereum = { version = "0.2.2-rc.1", path = "../substreams-ethereum" } [build-dependencies] anyhow = "1" -substreams-ethereum = { version = "0.2.1-rc", path = "../substreams-ethereum" } +substreams-ethereum = { version = "0.2.2-rc.1", path = "../substreams-ethereum" } [dev-dependencies] pretty_assertions = "1.2.1" diff --git a/abigen/Cargo.toml b/abigen/Cargo.toml index c7b52bf..24ae914 100644 --- a/abigen/Cargo.toml +++ b/abigen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substreams-ethereum-abigen" -version = "0.2.1-rc" +version = "0.2.2-rc.1" edition = "2021" description = "Substreams development kit for Ethereum chains, contains Firehose Block model and helpers as well as utilities for Ethereum ABI encoding/decoding." homepage = "https://github.com/streamingfast/substreams-ethereum" @@ -20,7 +20,7 @@ syn = { version = "1.0.95", default-features = false, features = ["derive", "par quote = "1.0.2" proc-macro2 = "1.0.7" prettyplease = "0.1" -substreams-ethereum-core = { version = "0.2.1-rc", path = "../core" } +substreams-ethereum-core = { version = "0.2.2-rc.1", path = "../core" } [dev-dependencies] pretty_assertions = "1.2.1" diff --git a/core/Cargo.toml b/core/Cargo.toml index 5bb52e2..a094a21 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substreams-ethereum-core" -version = "0.2.1-rc" +version = "0.2.2-rc.1" edition = "2021" description = "Substreams development kit for Ethereum chains, contains Firehose Block model and helpers as well as utilities for Ethereum ABI encoding/decoding." homepage = "https://substreams.streamingfast.io/" diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 1310327..7ebd1bf 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substreams-ethereum-derive" -version = "0.2.1-rc" +version = "0.2.2-rc.1" edition = "2021" description = "Substreams development kit for Ethereum chains, contains Firehose Block model and helpers as well as utilities for Ethereum ABI encoding/decoding." homepage = "https://github.com/streamingfast/substreams-ethereum" @@ -21,7 +21,7 @@ hex = "0.4" syn = { version = "1.0.13", default-features = false, features = ["derive", "parsing", "printing", "proc-macro"] } quote = "1.0.2" proc-macro2 = "1.0.7" -substreams-ethereum-abigen = { version = "0.2.1-rc", path = "../abigen" } +substreams-ethereum-abigen = { version = "0.2.2-rc.1", path = "../abigen" } [dev-dependencies] prettyplease = "0.1" diff --git a/substreams-ethereum/Cargo.toml b/substreams-ethereum/Cargo.toml index b354c46..642808a 100644 --- a/substreams-ethereum/Cargo.toml +++ b/substreams-ethereum/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "substreams-ethereum" -version = "0.2.1-rc" +version = "0.2.2-rc.1" edition = "2021" description = "Substreams development kit for Ethereum chains, contains Firehose Block model and helpers as well as utilities for Ethereum ABI encoding/decoding." homepage = "https://substreams.streamingfast.io/" @@ -13,9 +13,9 @@ rust-version = "1.60" [dependencies] substreams = "~0.0.20" -substreams-ethereum-abigen = { version = "0.2.1-rc", path = "../abigen" } -substreams-ethereum-derive = { version = "0.2.1-rc", path = "../derive" } -substreams-ethereum-core = { version = "0.2.1-rc", path = "../core" } +substreams-ethereum-abigen = { version = "0.2.2-rc.1", path = "../abigen" } +substreams-ethereum-derive = { version = "0.2.2-rc.1", path = "../derive" } +substreams-ethereum-core = { version = "0.2.2-rc.1", path = "../core" } # Required so that ethabi > ethereum-types build correctly under wasm32-unknown-unknown [target.wasm32-unknown-unknown.dependencies]