From 2bb5d3a52d695ee6ee93112cb783325062fdbb5d Mon Sep 17 00:00:00 2001 From: Petko Pavlovski Date: Tue, 29 Aug 2023 23:25:01 +0300 Subject: [PATCH] chore: version 0.0.2 (#12) --- CHANGELOG.md | 17 +++++++++++++++++ Cargo.lock | 7 ++++--- Cargo.toml | 4 ++-- 3 files changed, 23 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be8999f..24a12b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,5 +7,22 @@ All notable changes to this project will be documented in this file. ### Features - One-shot message with retry +- Config groupings +- Upgrade-presync subcommand +- Resolve indexing status of new_hash of active indexers on current subg dep +- Status reqwest timeout and docs + +### Miscellaneous Tasks + +- Release 0.0.1 +- Update labels workflow +- Version 0.0.2 +- Version 0.0.2 + +### Refactor + +- Rescope cli for sending UpgradeIntentMessage +- Use latest sdk with query fix +- Rename one-shot-cli to graphcast-cli diff --git a/Cargo.lock b/Cargo.lock index 18561e3..947f971 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2107,7 +2107,7 @@ dependencies = [ [[package]] name = "graphcast-cli" -version = "0.0.1" +version = "0.0.2" dependencies = [ "anyhow", "async-graphql", @@ -2133,8 +2133,9 @@ dependencies = [ [[package]] name = "graphcast-sdk" -version = "0.4.1" -source = "git+https://github.com/graphops/graphcast-sdk#e6235ab8986fb4ec6ee705c4b7b3a9f432efdd62" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8afa03c095257be7de635fd67f33be36e0f196c138207f6a0713e4cde65dacf9" dependencies = [ "anyhow", "async-graphql", diff --git a/Cargo.toml b/Cargo.toml index 5a23305..1bf276a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphcast-cli" -version = "0.0.1" +version = "0.0.2" edition = "2021" authors = ["GraphOps (axiomatic-aardvark, hopeyen)"] description = "CLI to participate in Graphcast network" @@ -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.2" once_cell = "1.17" chrono = "0.4" serde = { version = "1.0.163", features = ["rc"] }