Skip to content
This repository has been archived by the owner on Jul 20, 2023. It is now read-only.

Commit

Permalink
chore: release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-eiger committed May 20, 2023
1 parent b9d90a7 commit 549df19
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -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",
]
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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]]
Expand Down

0 comments on commit 549df19

Please sign in to comment.