diff --git a/CHANGELOG.md b/CHANGELOG.md index cc6cefd..cc52fd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ 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). -## Next +## [0.9.3](https://github.com/streamingfast/substreams-ethereum/releases/tag/v0.9.3) * Added `timestamp` on `Block` type, returns a reference to the header's timestamp. diff --git a/Cargo.toml b/Cargo.toml index 3f629d5..9c130a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ ] [workspace.package] -version = "0.9.2" +version = "0.9.3" 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/" @@ -20,10 +20,10 @@ categories = ["api-bindings", "external-ffi-bindings", "wasm"] rust-version = "1.60" [workspace.dependencies] -substreams-ethereum = { version = "0.9.2", path = "./substreams-ethereum" } -substreams-ethereum-abigen = { version = "0.9.2", path = "./abigen" } -substreams-ethereum-core = { version = "0.9.2", path = "./core" } -substreams-ethereum-derive = { version = "0.9.2", path = "./derive" } +substreams-ethereum = { version = "0.9.3", path = "./substreams-ethereum" } +substreams-ethereum-abigen = { version = "0.9.3", path = "./abigen" } +substreams-ethereum-core = { version = "0.9.3", path = "./core" } +substreams-ethereum-derive = { version = "0.9.3", path = "./derive" } [profile.release] lto = true diff --git a/RELEASE.md b/RELEASE.md index 5e5fd95..ea55436 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -17,5 +17,5 @@ cargo test --target aarch64-apple-darwin # Change 'aarch64-apple-darwin' to fit git add -A . && git commit -m "Preparing release of ${version}" -sfreleaser release "${version}" +sfreleaser release "v${version}" ``` \ No newline at end of file diff --git a/abigen-tests/Cargo.toml b/abigen-tests/Cargo.toml index f681767..77cbdb2 100644 --- a/abigen-tests/Cargo.toml +++ b/abigen-tests/Cargo.toml @@ -11,6 +11,9 @@ keywords.workspace = true categories.workspace = true rust-version.workspace = true +[lib] +doc = false + [dependencies] ethabi = "17.0" num-bigint = "0.4.3" diff --git a/core/src/pb/mod.rs b/core/src/pb/mod.rs index 019527b..537c3f1 100644 --- a/core/src/pb/mod.rs +++ b/core/src/pb/mod.rs @@ -1,3 +1,8 @@ +//! This module contains the protobuf generated code for the Substreams Ethereum block +//! model. +//! +//! This is the raw Protbuf code, types in here can be used without problem. + mod generated; /// Re-export the protobuf generated code directly, at some point we might diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 9d32f6b..763dfbf 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -13,6 +13,7 @@ rust-version.workspace = true [lib] proc-macro = true +doc = false [dependencies] ethabi = "17.0"