Skip to content

Commit

Permalink
release v0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Mar 21, 2024
1 parent 707a9c3 commit 0acb54a
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## v0.5.2 - 2024-03-20

### Highlights

* update `oneio` to `0.16.5` to fix route-views collector API issue

## v0.5.1 - 2024-03-20

### Highlights
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bgpkit-commons"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
authors = ["Mingwei Zhang <mingwei@bgpkit.com>"]
readme = "README.md"
Expand All @@ -22,7 +22,7 @@ required-features = ["cli"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
oneio = { version = "0.16.4", default-features = false, features = ["lib-core"] }
oneio = { version = "0.16.5", default-features = false, features = ["lib-core"] }
regex = "1"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
Expand Down
10 changes: 10 additions & 0 deletions src/collectors/riperis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,13 @@ pub fn get_riperis_collectors() -> Result<Vec<MrtCollector>> {
.map(|c| c.to_mrt_collector().unwrap())
.collect())
}

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn test_get_riperis_collectors() {
dbg!(get_riperis_collectors().unwrap());
}
}

0 comments on commit 0acb54a

Please sign in to comment.