Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 3d21e524deed1e80a90ccc650ca9f0e5903eb86e
Author: Steven Hé (Sīchàng) <sichang.he@dukekunshan.edu.cn>
Date:   Thu May 16 22:39:27 2024 +0800

    bump to 0.6.0 instead of 0.5.1

commit cb49f79d26afdf8ec5264ed5c6d6d1e27e7e636a
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue May 14 14:00:10 2024 +0000

    chore: release
  • Loading branch information
SichangHe committed May 16, 2024
1 parent 1114ffe commit 14bab27
Show file tree
Hide file tree
Showing 20 changed files with 113 additions and 29 deletions.
15 changes: 15 additions & 0 deletions route_verification/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0](https://github.com/SichangHe/internet_route_verification/compare/route_verification-v0.5.0...route_verification-v0.6.0) - 2024-05-14

### Other
- filter percentages [#159](https://github.com/SichangHe/internet_route_verification/pull/159)
- remember to bump all RIB stats index
- new AS rules stats
- count community filter [#158](https://github.com/SichangHe/internet_route_verification/pull/158)
- RIB stats for all4
- `pypy3``python` in Rust to use with rye
- resolve PeerAS at run time
- make new clippy happy
- BGPq3-compatible rules CDF plot [#137](https://github.com/SichangHe/internet_route_verification/pull/137)
- basic last-modified stats&CDF [#130](https://github.com/SichangHe/internet_route_verification/pull/130)
- update filter AS script after verbosity changes

## [0.4.1](https://github.com/SichangHe/internet_route_verification/compare/route_verification-v0.4.0...route_verification-v0.4.1) - 2024-04-19

### Fixed
Expand Down
18 changes: 9 additions & 9 deletions route_verification/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 9 additions & 9 deletions route_verification/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,21 +42,21 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["unbounded_depth"] }
thiserror = "1.0"

as_path_regex = { package = "route_verification_as_path_regex", path = "./as_path_regex", version = "0.1.0" }
as_path_regex = { package = "route_verification_as_path_regex", path = "./as_path_regex", version = "0.2.0" }
as_rel = { package = "route_verification_as_rel", path = "./as_rel", version = "0.1.0" }
bgp = { package = "route_verification_bgp", path = "./bgp", version = "0.5.0" }
bgp = { package = "route_verification_bgp", path = "./bgp", version = "0.6.0" }
bgpmap = { package = "route_verification_bgpmap", path = "./bgpmap", version = "0.1.0" }
bloom = { package = "route_verification_bloom", path = "./bloom", version = "0.1.1" }
common_regex = { package = "route_verification_common_regex", path = "./common_regex", version = "0.1.0" }
graph = { package = "route_verification_graph", path = "./graph", version = "0.1.0" }
io = { package = "route_verification_io", path = "./io", version = "0.1.0" }
ir = { package = "route_verification_ir", path = "./ir", version = "0.2.0" }
irr = { package = "route_verification_irr", path = "./irr", version = "0.2.0" }
lex = { package = "route_verification_lex", path = "./lex", version = "0.2.0" }
parse = { package = "route_verification_parse", path = "./parse", version = "0.2.0" }
shared_struct = { package = "route_verification_shared_struct", path = "./shared_struct", version = "0.1.1" }
ir = { package = "route_verification_ir", path = "./ir", version = "0.3.0" }
irr = { package = "route_verification_irr", path = "./irr", version = "0.2.1" }
lex = { package = "route_verification_lex", path = "./lex", version = "0.2.1" }
parse = { package = "route_verification_parse", path = "./parse", version = "0.3.0" }
shared_struct = { package = "route_verification_shared_struct", path = "./shared_struct", version = "0.2.0" }

route_verification = { package = "route_verification", path = ".", version = "0.5.0" }
route_verification = { package = "route_verification", path = ".", version = "0.6.0" }

[workspace.package]
description = "Parse RPSL in the IRR to verify observed BGP routes"
Expand All @@ -65,7 +65,7 @@ repository = "https://github.com/SichangHe/internet_route_verification"

[package]
name = "route_verification"
version = "0.5.0"
version = "0.6.0"
edition = "2021"

description.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions route_verification/as_path_regex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/SichangHe/internet_route_verification/compare/route_verification_as_path_regex-v0.1.0...route_verification_as_path_regex-v0.2.0) - 2024-05-14

### Other
- resolve PeerAS at run time
- make new clippy happy
2 changes: 1 addition & 1 deletion route_verification/as_path_regex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_as_path_regex"
version = "0.1.0"
version = "0.2.0"
edition = "2021"

description.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions route_verification/bgp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0](https://github.com/SichangHe/internet_route_verification/compare/route_verification_bgp-v0.5.0...route_verification_bgp-v0.6.0) - 2024-05-14

### Other
- resolve PeerAS at run time

## [0.5.0](https://github.com/SichangHe/internet_route_verification/compare/route_verification_bgp-v0.4.0...route_verification_bgp-v0.5.0) - 2024-04-19

### Other
Expand Down
2 changes: 1 addition & 1 deletion route_verification/bgp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_bgp"
version = "0.5.0"
version = "0.6.0"
edition = "2021"

description.workspace = true
Expand Down
1 change: 0 additions & 1 deletion route_verification/bgp/src/cmp/filter.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
use ::lex::Call;
use ir::{Filter::*, *};

use super::*;
Expand Down
2 changes: 0 additions & 2 deletions route_verification/bgp/src/report.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
use std::ops::{BitAnd, BitOr, BitOrAssign};

use ::lex::Call;

use super::*;

mod all;
Expand Down
12 changes: 12 additions & 0 deletions route_verification/ir/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.0](https://github.com/SichangHe/internet_route_verification/compare/route_verification_ir-v0.2.0...route_verification_ir-v0.3.0) - 2024-05-14

### Other
- resolve PeerAS at run time
2 changes: 1 addition & 1 deletion route_verification/ir/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_ir"
version = "0.2.0"
version = "0.3.0"
edition = "2021"

description.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions route_verification/irr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.1](https://github.com/SichangHe/internet_route_verification/compare/route_verification_irr-v0.2.0...route_verification_irr-v0.2.1) - 2024-05-14

### Other
- `pypy3``python` in Rust to use with rye
2 changes: 1 addition & 1 deletion route_verification/irr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_irr"
version = "0.2.0"
version = "0.2.1"
edition = "2021"

description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion route_verification/lex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_lex"
version = "0.2.0"
version = "0.2.1"
edition = "2021"

description.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions route_verification/parse/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.0](https://github.com/SichangHe/internet_route_verification/compare/route_verification_parse-v0.2.0...route_verification_parse-v0.3.0) - 2024-05-14

### Other
- resolve PeerAS at run time
2 changes: 1 addition & 1 deletion route_verification/parse/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_parse"
version = "0.2.0"
version = "0.3.0"
edition = "2021"

description.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions route_verification/rib_stats/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.3](https://github.com/SichangHe/internet_route_verification/compare/route_verification_rib_stats-v0.1.2...route_verification_rib_stats-v0.1.3) - 2024-05-14

### Other
- remember to bump all RIB stats index
- RIB stats for all4

## [0.1.2](https://github.com/SichangHe/internet_route_verification/compare/route_verification_rib_stats-v0.1.1...route_verification_rib_stats-v0.1.2) - 2024-04-19

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion route_verification/rib_stats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_rib_stats"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description.workspace = true
license.workspace = true
Expand Down
12 changes: 12 additions & 0 deletions route_verification/shared_struct/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0](https://github.com/SichangHe/internet_route_verification/compare/route_verification_shared_struct-v0.1.1...route_verification_shared_struct-v0.2.0) - 2024-05-14

### Other
- resolve PeerAS at run time
2 changes: 1 addition & 1 deletion route_verification/shared_struct/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "route_verification_shared_struct"
version = "0.1.1"
version = "0.2.0"
edition = "2021"

description.workspace = true
Expand Down

0 comments on commit 14bab27

Please sign in to comment.