From 549df1992a70f1db02a12a62a022d493f8900264 Mon Sep 17 00:00:00 2001 From: Petko Date: Fri, 19 May 2023 19:43:41 +0300 Subject: [PATCH] chore: release 0.3.0 --- .cargo/config.toml | 5 ++++- CHANGELOG.md | 20 ++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 4 ++-- 4 files changed, 27 insertions(+), 4 deletions(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 0db3168..1d498d9 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,4 +1,7 @@ [target.'cfg(target_os = "macos")'] # when using osx, we need to link against some golang libraries, it did just work with this missing flags # from: https://github.com/golang/go/issues/42459 -rustflags = ["-C", "link-args=-framework CoreFoundation -framework Security -framework CoreServices"] +rustflags = [ + "-C", + "link-args=-framework CoreFoundation -framework Security -framework CoreServices -lresolv", +] diff --git a/CHANGELOG.md b/CHANGELOG.md index 10792ab..a17d852 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file. ## [unreleased] +### Features + +- Ratio queries added, refactor logs +- Persist file for local attestations and remote msgs +- Add options to toggle logger format + +### Miscellaneous Tasks + +- Update dependencies without conflicts +- Update CI workflow and add docs +- Revert CI workflow +- Remove e2e test suite from repo + +### Refactor + +- Split comparison and gossip of POI + +## [0.2.0] - 2023-05-09 + ### Bug Fixes - Stake query address @@ -71,6 +90,7 @@ All notable changes to this project will be documented in this file. - Tweak crates badge - Release v0.1.1 - Release v0.1.3 +- Release v0.2.0 ### Refactor diff --git a/Cargo.lock b/Cargo.lock index 3dd3352..4174e5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3864,7 +3864,7 @@ dependencies = [ [[package]] name = "poi-radio" -version = "0.2.0" +version = "0.3.0" dependencies = [ "anyhow", "async-graphql", diff --git a/Cargo.toml b/Cargo.toml index 0d09f76..4309a9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "poi-radio" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["GraphOps (axiomatic-aardvark, hopeyen)"] description = "POI Radio monitors subgraph data integrity in real time using Graphcast SDK" @@ -61,7 +61,7 @@ clap = { version = "3.2.25", features = ["derive", "env"] } # console-subscriber = "0.1.9" [dev-dependencies] -criterion = {version = "0.4", features = [ "async", "async_futures" ]} +criterion = { version = "0.4", features = ["async", "async_futures"] } rand = "0.8" [[bench]]