From 0a497ad64f7729a508af48358c8a1415a32a8a26 Mon Sep 17 00:00:00 2001 From: axiomatic-aardvark Date: Mon, 4 Mar 2024 17:43:25 +0200 Subject: [PATCH] chore: 1.0.1 --- CHANGELOG.md | 32 ++++++++++++++++++++++++++++++++ Cargo.lock | 7 ++++--- Cargo.toml | 2 +- subgraph-radio/Cargo.toml | 2 +- 4 files changed, 38 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3469cd..398d8a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,38 @@ All notable changes to this project will be documented in this file. +## [1.0.1] - 2024-03-04 + +### Bug Fixes +- Readme links +- Memory leak + +### Miscellaneous Tasks + +- Release 1.0.1 + +## [1.0.0] - 2023-12-19 + +### Features + +- Update e2e tests +- Validate indexer address config variable + +### Refactor + +- Slack bot switched to using webhook instead of bot token +- Remove waku discovery enr from Radio +- Switch to sqlite instead of json for state persistence +- Effective control of event durations and timeouts +- Better message type determiniation +- Radio payload trait +- Updated a few config names +- Rename radio_infrastructure to radio_setup + +### Miscellaneous Tasks + +- Release 1.0.0 + ## [0.1.9] - 2023-10-31 ### Features diff --git a/Cargo.lock b/Cargo.lock index 4eb2878..ce34387 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2512,8 +2512,9 @@ dependencies = [ [[package]] name = "graphcast-sdk" -version = "0.6.1" -source = "git+https://github.com/graphops/graphcast-sdk#5db9ca626e1888be443df7ee87e2f16a47fa6798" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f813c157c8d4c01e2ed5671e97d2a7a4f8c42adc4b030bf11c13c04e25bc4dfa" dependencies = [ "anyhow", "async-graphql", @@ -5748,7 +5749,7 @@ dependencies = [ [[package]] name = "subgraph-radio" -version = "0.1.9" +version = "1.0.1" dependencies = [ "anyhow", "async-graphql", diff --git a/Cargo.toml b/Cargo.toml index b441710..3761fdf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ panic = 'unwind' opt-level = 3 [workspace.dependencies] -graphcast-sdk = { git = "https://github.com/graphops/graphcast-sdk" } +graphcast-sdk = "0.7.0" clap = { version = "4.4", features = [ "cargo", "unstable-doc", diff --git a/subgraph-radio/Cargo.toml b/subgraph-radio/Cargo.toml index 71e1573..105cf4b 100644 --- a/subgraph-radio/Cargo.toml +++ b/subgraph-radio/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "subgraph-radio" -version = "0.1.9" +version = "1.0.1" edition = "2021" authors = ["GraphOps (axiomatic-aardvark, hopeyen)"] description = "Subgraph Radio monitors subgraph PublicPoI and UpgradeIntent messages in real time using Graphcast SDK"