Skip to content

Commit

Permalink
prepare v0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
digizeph committed Jul 11, 2024
1 parent 46ce42f commit 0a26b2b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

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

## v0.7.0 -2024-07-11

* consolidate all functionalities into a single `BgpkitCommons` instance

Example usage:

```rust
use bgpkit_commons::BgpkitCommons;
let mut bgpkit = BgpkitCommons::new();
bgpkit.load_bogons().unwrap();
assert!(bgpkit.bogons_match("23456").unwrap());
```

## v0.6.0 - 2024-06-26

* [Added `bogons` module](https://github.com/bgpkit/bgpkit-commons/pull/12) to check if an IP prefix or an ASN is a
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.6.0"
version = "0.7.0"
edition = "2021"
authors = ["Mingwei Zhang <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 0a26b2b

Please sign in to comment.