diff --git a/CHANGELOG.md b/CHANGELOG.md index e22a91c..fe43125 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## v0.10.11-beta.1 - 2024-10-16 + +### Highlights + +* Improved RIS Live message types and handling +* clean up dependencies + * `models` feature is removed, and all dependencies are now required dependencies for the crate + * `models` module no-longer requires dependencies introduced by parser, like `bytes` for encoding +* decouple `oneio` from `parser` feature + * `oneio` is no-longer a required dependency for the parser + * users can now use `parser` feature without `oneio` (with `--no-default-features` specified) + * to create a new parser, one needs to user `BgpkitParser::from_reader` function instead of `BgpkitParser::new` + * downstream libraries that only utilize parser code (such as RIS Live parsing) no-longer have to depend on oneio + ## v0.10.10 - 2024-08-05 ### Highlights diff --git a/Cargo.toml b/Cargo.toml index 1b283bd..d79e2ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bgpkit-parser" -version = "0.10.10" +version = "0.10.11-beta.1" authors = ["Mingwei Zhang "] edition = "2021" license = "MIT"