Skip to content

Commit c83b0af

Browse files
committed
prepare v0.8.0 release
1 parent 2643590 commit c83b0af

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

CHANGELOG.md

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

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

5+
## v0.8.0
6+
7+
### New subcommand
8+
9+
* added `monocle pfx2as` subcommand to allow bulk prefix-to-asn mapping using BGPKIT dataset
10+
* it takes a list of prefixes or prefix files (one prefix per line)
11+
12+
Example:
13+
14+
```bash
15+
monocle pfx2as 1.1.1.0/24 8.8.8.0/24 --json
16+
[
17+
{
18+
"origin": 13335,
19+
"prefix": "1.1.1.0/24"
20+
},
21+
{
22+
"origin": 15169,
23+
"prefix": "8.8.8.0/24"
24+
}
25+
]
26+
```
27+
28+
### Maintenance
29+
30+
* update dependencies
31+
* note that we upgraded to `bgpkit-parser` v0.11 and community values are now without prefixes such as `lg:` `ecv6`
32+
533
## v0.7.2 - 2025-01-08
634

735
### Improvements

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "monocle"
3-
version = "0.7.2"
3+
version = "0.8.0"
44
authors = ["Mingwei Zhang <mingwei@bgpkit.com>"]
55
edition = "2021"
66
readme = "README.md"

0 commit comments

Comments
 (0)