Skip to content

Commit

Permalink
prepare v0.7.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Oct 31, 2024
1 parent 98d71dd commit 2c8a727
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,34 @@

All notable changes to this project will be documented in this file.

## v0.7.3 - 2024-10-31

### Highlights

* add MRT collector peers information
* struct exposed as `crate::mrt_collectors::MrtCollectorPeer`
* fetch data by calling `commons.load_mrt_collector_peers()` first
* access all peers by calling `commons.mrt_collector_peers()`
* access full-feed peers only by calling `commons.mrt_collector_peers_full_feed()`

Example usage:

```rust
use bgpkit_commons::BgpkitCommons;
fn main() {
let mut commons = BgpkitCommons::new();
commons.load_mrt_collector_peers().unwrap();
let peers = commons.mrt_collector_peers();
for peer in peers {
println!("{:?}", peer);
}
let full_feed_peers = commons.mrt_collector_peers_full_feed();
for peer in full_feed_peers {
println!("{:?}", peer);
}
}
```

## v0.7.2 - 2024-10-11

### Highlights
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bgpkit-commons"
version = "0.7.2"
version = "0.7.3"
edition = "2021"
authors = ["Mingwei Zhang <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 2c8a727

Please sign in to comment.