diff --git a/Cargo.lock b/Cargo.lock index 8bd9d3f0..ff17bcf4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4492,7 +4492,7 @@ dependencies = [ [[package]] name = "thegraph-client-subgraphs" -version = "0.1.3" +version = "0.1.4" dependencies = [ "indoc", "reqwest", @@ -4510,7 +4510,7 @@ dependencies = [ [[package]] name = "thegraph-core" -version = "0.9.6" +version = "0.10.0" dependencies = [ "alloy", "async-graphql", @@ -4540,7 +4540,7 @@ dependencies = [ [[package]] name = "thegraph-headers" -version = "0.1.2" +version = "0.1.3" dependencies = [ "fake", "headers", diff --git a/thegraph-client-subgraphs/CHANGELOG.md b/thegraph-client-subgraphs/CHANGELOG.md index ab039c43..37661633 100644 --- a/thegraph-client-subgraphs/CHANGELOG.md +++ b/thegraph-client-subgraphs/CHANGELOG.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [0.1.4](https://github.com/edgeandnode/toolshed/compare/thegraph-client-subgraphs-v0.1.3...thegraph-client-subgraphs-v0.1.4) - 2025-01-09 + +### Other + +- updated the following local packages: thegraph-core + ## [0.1.3](https://github.com/edgeandnode/toolshed/compare/thegraph-client-subgraphs-v0.1.2...thegraph-client-subgraphs-v0.1.3) - 2024-12-11 ### Other diff --git a/thegraph-client-subgraphs/Cargo.toml b/thegraph-client-subgraphs/Cargo.toml index af792294..e01d46d0 100644 --- a/thegraph-client-subgraphs/Cargo.toml +++ b/thegraph-client-subgraphs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "thegraph-client-subgraphs" description = "A client for The Graph network's Subgraphs data service" -version = "0.1.3" +version = "0.1.4" repository = "https://github.com/edgeandnode/toolshed" authors = ["Lorenzo Delgado (LNSD) "] license = "MIT" @@ -13,7 +13,7 @@ indoc = "2.0.5" reqwest = { version = "0.12.9", features = ["json"] } serde = { version = "1.0.214", features = ["derive"] } serde_json = { version = "1.0.132", features = ["raw_value"] } -thegraph-core = { version = "0.9", path = "../thegraph-core", features = ["serde"] } +thegraph-core = { version = "0.10", path = "../thegraph-core", features = ["serde"] } thegraph-graphql-http = { version = "0.3.2", path = "../thegraph-graphql-http", features = ["reqwest"] } thiserror = "2.0.1" tracing = { version = "0.1.40", default-features = false, features = ["attributes"] } diff --git a/thegraph-core/CHANGELOG.md b/thegraph-core/CHANGELOG.md index 79c6298b..76d97c1e 100644 --- a/thegraph-core/CHANGELOG.md +++ b/thegraph-core/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0](https://github.com/edgeandnode/toolshed/compare/thegraph-core-v0.10.0...thegraph-core-v0.10.0) - 2025-01-09 + +### Other + +- *(thegraph-core)* update rust crate alloy v0.8 (#465) + ## [0.9.6](https://github.com/edgeandnode/toolshed/compare/thegraph-core-v0.9.5...thegraph-core-v0.9.6) - 2024-12-19 ### Added diff --git a/thegraph-core/Cargo.toml b/thegraph-core/Cargo.toml index b1b901fc..98b630c6 100644 --- a/thegraph-core/Cargo.toml +++ b/thegraph-core/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "thegraph-core" description = "Rust core modules for The Graph network" -version = "0.9.6" +version = "0.10.0" repository = "https://github.com/edgeandnode/toolshed" authors = ["Lorenzo Delgado (LNSD) "] license = "MIT" diff --git a/thegraph-headers/CHANGELOG.md b/thegraph-headers/CHANGELOG.md index 201c4cd8..1d2af5ea 100644 --- a/thegraph-headers/CHANGELOG.md +++ b/thegraph-headers/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/edgeandnode/toolshed/compare/thegraph-headers-v0.1.2...thegraph-headers-v0.1.3) - 2025-01-09 + +### Other + +- updated the following local packages: thegraph-core + ## [0.1.2](https://github.com/edgeandnode/toolshed/compare/thegraph-headers-v0.1.1...thegraph-headers-v0.1.2) - 2024-12-11 ### Other diff --git a/thegraph-headers/Cargo.toml b/thegraph-headers/Cargo.toml index a4c9ceb7..208a02d8 100644 --- a/thegraph-headers/Cargo.toml +++ b/thegraph-headers/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "thegraph-headers" description = "Common HTTP headers for _The Graph_ network services" -version = "0.1.2" +version = "0.1.3" repository = "https://github.com/edgeandnode/toolshed" authors = ["Lorenzo Delgado (LNSD) "] license = "MIT" @@ -16,7 +16,7 @@ headers = "0.4" http = "1.2.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -thegraph-core = { version = "0.9", path = "../thegraph-core", features = ["serde"] } +thegraph-core = { version = "0.10", path = "../thegraph-core", features = ["serde"] } [dev-dependencies] fake = "3.0.1"