Skip to content

Commit 0acb54a

Browse files
committed
release v0.5.2
1 parent 707a9c3 commit 0acb54a

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## v0.5.2 - 2024-03-20
6+
7+
### Highlights
8+
9+
* update `oneio` to `0.16.5` to fix route-views collector API issue
10+
511
## v0.5.1 - 2024-03-20
612

713
### Highlights

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bgpkit-commons"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2021"
55
authors = ["Mingwei Zhang <[email protected]>"]
66
readme = "README.md"
@@ -22,7 +22,7 @@ required-features = ["cli"]
2222
[dependencies]
2323
serde = { version = "1.0", features = ["derive"] }
2424
serde_json = "1"
25-
oneio = { version = "0.16.4", default-features = false, features = ["lib-core"] }
25+
oneio = { version = "0.16.5", default-features = false, features = ["lib-core"] }
2626
regex = "1"
2727
anyhow = "1.0"
2828
chrono = { version = "0.4", features = ["serde"] }

src/collectors/riperis.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,13 @@ pub fn get_riperis_collectors() -> Result<Vec<MrtCollector>> {
7979
.map(|c| c.to_mrt_collector().unwrap())
8080
.collect())
8181
}
82+
83+
#[cfg(test)]
84+
mod tests {
85+
use super::*;
86+
87+
#[test]
88+
fn test_get_riperis_collectors() {
89+
dbg!(get_riperis_collectors().unwrap());
90+
}
91+
}

0 commit comments

Comments
 (0)