pybgpkit-parser 0.6.0__tar.gz → 0.6.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## 0.6.1 - 2025-06-06
6
+
7
+ ### Highlights
8
+
9
+ * Update `bgpkit-parser` to v0.11.1, which includes a fix on parsing for `next_hop` for IPv6 peers.
10
+
5
11
  ## 0.6.0 - 2025-06-04
6
12
 
7
13
  ### Highlights
@@ -134,9 +134,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
134
134
 
135
135
  [[package]]
136
136
  name = "bgpkit-parser"
137
- version = "0.11.0"
137
+ version = "0.11.1"
138
138
  source = "registry+https://github.com/rust-lang/crates.io-index"
139
- checksum = "d6550ea4a70595cb2b2c971581b3f217f27a40774e523552d9c58ebacf103187"
139
+ checksum = "d6990a801ae8907b05f3d03db8d8ffa744825b2496937cf687ac4289e924a4a1"
140
140
  dependencies = [
141
141
  "bitflags",
142
142
  "bytes",
@@ -1121,7 +1121,7 @@ dependencies = [
1121
1121
 
1122
1122
  [[package]]
1123
1123
  name = "pybgpkit-parser"
1124
- version = "0.6.0"
1124
+ version = "0.6.1"
1125
1125
  dependencies = [
1126
1126
  "bgpkit-parser",
1127
1127
  "pyo3",
@@ -4,7 +4,7 @@ description = "BGPKIT Parser Python Binding"
4
4
  keywords = ["bgp", "mrt", "parser"]
5
5
  repository = "https://github.com/bgpkit/bgpkit-parser-py"
6
6
  documentation = "https://docs.rs/bgpkit-parser-py"
7
- version = "0.6.0"
7
+ version = "0.6.1"
8
8
  authors = ["Mingwei Zhang <mingwei@bgpkit.com>"]
9
9
  edition = "2021"
10
10
  license = "MIT"
@@ -15,7 +15,7 @@ name = "pybgpkit_parser"
15
15
  crate-type = ["cdylib", "rlib"]
16
16
 
17
17
  [dependencies]
18
- bgpkit-parser = "0.11.0"
18
+ bgpkit-parser = "0.11.1"
19
19
  pyo3 = { version = "0.25", features = ["extension-module"] }
20
20
 
21
21
  [build-dependencies]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pybgpkit-parser
3
- Version: 0.6.0
3
+ Version: 0.6.1
4
4
  Summary: BGPKIT Parser Python Binding
5
5
  Keywords: bgp,mrt,parser
6
6
  Author: Mingwei Zhang <mingwei@bgpkit.com>
File without changes