From 3e2c0b42c96f12cbb184c3189b0677080f36e715 Mon Sep 17 00:00:00 2001 From: Petko Pavlovski Date: Sun, 13 Aug 2023 20:56:00 +0300 Subject: [PATCH] chore: release 0.1.3 (#42) --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.lock | 7 ++++--- subgraph-radio/Cargo.toml | 4 ++-- test-runner/Cargo.toml | 2 +- test-sender/Cargo.toml | 2 +- test-utils/Cargo.toml | 2 +- 6 files changed, 31 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e681928..52f26e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,28 @@ All notable changes to this project will be documented in this file. ### Bug Fixes +- Effective ctrl+c shutdown + +### Features + +- Indexer management client basics +- Allow read config file +- Version upgrade triggers offchain sync request to indexer + +### Miscellaneous Tasks + +- Add labels workflow +- Update labels workflow (#37) +- Split off one-shot-cli package + +### Refactor + +- Config groupings + +## [0.1.2] - 2023-07-21 + +### Bug Fixes + - Add metrics label for msg types - Remove id verification for self in api service diff --git a/Cargo.lock b/Cargo.lock index 51f7fe0..9c81ad8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2328,8 +2328,9 @@ dependencies = [ [[package]] name = "graphcast-sdk" -version = "0.4.0" -source = "git+https://github.com/graphops/graphcast-sdk#0f367f2140ea8da82bae2a9a52711df68dcfa78a" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e1fa3491c2d05710eb70da653f817a89ac8116135ec7dc288cf6e54b26ef77d" dependencies = [ "anyhow", "async-graphql", @@ -5044,7 +5045,7 @@ dependencies = [ [[package]] name = "subgraph-radio" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "async-graphql", diff --git a/subgraph-radio/Cargo.toml b/subgraph-radio/Cargo.toml index 4134b01..8613cec 100644 --- a/subgraph-radio/Cargo.toml +++ b/subgraph-radio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subgraph-radio" -version = "0.1.2" +version = "0.1.3" edition = "2021" authors = ["GraphOps (axiomatic-aardvark, hopeyen)"] description = "Subgraph Radio monitors subgraph Public PoI and version upgrades messages in real time using Graphcast SDK" @@ -10,7 +10,7 @@ keywords = ["graphprotocol", "data-integrity", "Indexer", "waku", "p2p"] categories = ["network-programming", "web-programming::http-client"] [dependencies] -graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.4.1" prost = "0.11" once_cell = "1.17" chrono = "0.4" diff --git a/test-runner/Cargo.toml b/test-runner/Cargo.toml index a77bf9f..b98eec4 100644 --- a/test-runner/Cargo.toml +++ b/test-runner/Cargo.toml @@ -23,7 +23,7 @@ categories = [ [dependencies] waku = { version = "0.1.1", package = "waku-bindings" } test-utils = { path = "../test-utils" } -graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.4.1" subgraph-radio = { path = "../subgraph-radio" } tokio = { version = "1.1.1", features = ["full", "rt"] } tracing = "0.1" diff --git a/test-sender/Cargo.toml b/test-sender/Cargo.toml index 2c5b7c1..3b51e30 100644 --- a/test-sender/Cargo.toml +++ b/test-sender/Cargo.toml @@ -22,7 +22,7 @@ categories = [ [dependencies] waku = { version = "0.1.1", package = "waku-bindings" } -graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.4.1" test-utils = { path = "../test-utils" } subgraph-radio = { path = "../subgraph-radio" } tokio = { version = "1.1.1", features = ["full", "rt"] } diff --git a/test-utils/Cargo.toml b/test-utils/Cargo.toml index 3793883..acf6152 100644 --- a/test-utils/Cargo.toml +++ b/test-utils/Cargo.toml @@ -22,7 +22,7 @@ categories = [ [dependencies] waku = { version = "0.1.1", package = "waku-bindings" } -graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.4.1" subgraph-radio = { path = "../subgraph-radio" } tokio = { version = "1.1.1", features = ["full", "rt"] } tracing = "0.1"