Skip to content

Commit

Permalink
Preparing release of 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduard-Voiculescu committed Nov 28, 2022
1 parent f6a695a commit b69dc5a
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 17 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@

## Next

## [0.8.0](https://github.com/streaminfast/substreams-ethereum/releases/tag/v0.8.0)

* Bump `substreams` crate
* Changing `into()` call when converting to `BigInt` in abi to call the proper `signed` or `unsiged` encoding
* Adding `into()` method from `BigInt` to use `unsigned_bytes_be`

## [0.7.0](https://github.com/streaminfast/substreams-ethereum/releases/tag/v0.7.0)

* Bump `substreams` crate

## [0.6.2](https://github.com/streaminfast/substreams-ethereum/releases/tag/v0.6.2)

* Replacing `EthBigInt` and `ethabi::Uint` to only use `substreams-rs` scalar `BigInt` struct.
Expand Down
10 changes: 5 additions & 5 deletions abigen-tests/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substreams-ethereum-abigen-tests"
version = "0.7.0"
version = "0.8.0"
edition = "2021"
description = "Tests package meant to test the generated code of the abigen"
publish = false
Expand All @@ -12,13 +12,13 @@ num-bigint = "0.4.3"
num-traits = "0.2.15"
prost = { version = "^0.11.0" }
prost-types = "^0.11.0"
substreams = "^0.4.0"
substreams-ethereum = { version = "0.7.0", path = "../substreams-ethereum" }
substreams-ethereum-core = { version = "0.7.0", path = "../core"}
substreams = "^0.5.0"
substreams-ethereum = { version = "0.8.0", path = "../substreams-ethereum" }
substreams-ethereum-core = { version = "0.8.0", path = "../core"}

[build-dependencies]
anyhow = "1"
substreams-ethereum = { version = "0.7.0", path = "../substreams-ethereum" }
substreams-ethereum = { version = "0.8.0", path = "../substreams-ethereum" }

[dev-dependencies]
pretty_assertions = "1.2.1"
6 changes: 3 additions & 3 deletions abigen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substreams-ethereum-abigen"
version = "0.7.0"
version = "0.8.0"
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"
Expand All @@ -20,8 +20,8 @@ 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.7.0", path = "../core" }
substreams-ethereum-core = { version = "0.8.0", path = "../core" }

[dev-dependencies]
pretty_assertions = "1.2.1"
substreams = "^0.4.0"
substreams = "^0.5.0"
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substreams-ethereum-core"
version = "0.7.0"
version = "0.8.0"
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/"
Expand All @@ -15,7 +15,7 @@ rust-version = "1.60"
ethabi = "17.0"
prost = { version = "^0.11.0" }
prost-types = "^0.11.0"
substreams = "^0.4.0"
substreams = "^0.5.0"
num-bigint = "0.4"
bigdecimal = "0.3"

Expand Down
4 changes: 2 additions & 2 deletions derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substreams-ethereum-derive"
version = "0.7.0"
version = "0.8.0"
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"
Expand All @@ -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.7.0", path = "../abigen" }
substreams-ethereum-abigen = { version = "0.8.0", path = "../abigen" }

[dev-dependencies]
prettyplease = "0.1"
Expand Down
10 changes: 5 additions & 5 deletions substreams-ethereum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "substreams-ethereum"
version = "0.7.0"
version = "0.8.0"
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/"
Expand All @@ -12,10 +12,10 @@ categories = ["api-bindings", "external-ffi-bindings", "wasm"]
rust-version = "1.60"

[dependencies]
substreams = "^0.4.0"
substreams-ethereum-abigen = { version = "0.7.0", path = "../abigen" }
substreams-ethereum-derive = { version = "0.7.0", path = "../derive" }
substreams-ethereum-core = { version = "0.7.0", path = "../core" }
substreams = "^0.5.0"
substreams-ethereum-abigen = { version = "0.8.0", path = "../abigen" }
substreams-ethereum-derive = { version = "0.8.0", path = "../derive" }
substreams-ethereum-core = { version = "0.8.0", path = "../core" }

# Required so that ethabi > ethereum-types build correctly under wasm32-unknown-unknown
[target.wasm32-unknown-unknown.dependencies]
Expand Down

0 comments on commit b69dc5a

Please sign in to comment.