Skip to content

Commit

Permalink
Bump substreams to 0.6, prost to 0.13, prep release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sduchesneau committed Oct 16, 2024
1 parent c925dfa commit 9c1f10a
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.10.0](https://github.com/streamingfast/substreams-ethereum/releases/tag/v0.10.0)

* Bumped dependencies to `substreams` to 0.6 and `prost` to 0.13 (see [Upgrade notes](https://github.com/streamingfast/substreams-rs/releases/tag/v0.6.0))

## [0.9.13](https://github.com/streamingfast/substreams-ethereum/releases/tag/v0.9.13)

- Fixed AbiGen when in presence of functions that was has leading underscores or casing differences.
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["abigen", "abigen-tests", "core", "derive", "substreams-ethereum"]
resolver = "2"

[workspace.package]
version = "0.9.13"
version = "0.10.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,10 +15,10 @@ categories = ["api-bindings", "external-ffi-bindings", "wasm"]
rust-version = "1.60"

[workspace.dependencies]
substreams-ethereum = { version = "0.9.13", path = "./substreams-ethereum" }
substreams-ethereum-abigen = { version = "0.9.13", path = "./abigen" }
substreams-ethereum-core = { version = "0.9.13", path = "./core" }
substreams-ethereum-derive = { version = "0.9.13", path = "./derive" }
substreams-ethereum = { version = "0.10.0", path = "./substreams-ethereum" }
substreams-ethereum-abigen = { version = "0.10.0", path = "./abigen" }
substreams-ethereum-core = { version = "0.10.0", path = "./core" }
substreams-ethereum-derive = { version = "0.10.0", path = "./derive" }

[profile.release]
lto = true
Expand Down
6 changes: 3 additions & 3 deletions abigen-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ doc = false
ethabi = "17.0"
num-bigint = "0.4.3"
num-traits = "0.2.15"
prost = "^0.11.0"
prost-types = "^0.11.0"
substreams = "^0.5.0"
prost = "^0.13.0"
prost-types = "^0.13.0"
substreams = "^0.6.0"
substreams-ethereum = { workspace = true }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion abigen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ substreams-ethereum-core = { workspace = true }

[dev-dependencies]
pretty_assertions = "1.2.1"
substreams = "^0.5.0"
substreams = "0.6"
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ rust-version.workspace = true

[dependencies]
ethabi = "17.0"
prost = "^0.11.0"
prost-types = "^0.11.0"
substreams = "^0.5.0"
prost = "^0.13"
prost-types = "^0.13"
substreams = "0.6"
num-bigint = "0.4"
bigdecimal = "0.3"

Expand Down
2 changes: 1 addition & 1 deletion substreams-ethereum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ rust-version.workspace = true

[dependencies]
num-bigint = "0.4.3"
substreams = "^0.5.0"
substreams = "0.6"
substreams-ethereum-abigen = { workspace = true }
substreams-ethereum-derive = { workspace = true }
substreams-ethereum-core = { workspace = true }
Expand Down

0 comments on commit 9c1f10a

Please sign in to comment.