pybgpkit-parser 0.5.0b1__tar.gz → 0.5.2__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.
@@ -11,3 +11,9 @@ Cargo.lock
11
11
 
12
12
  .idea
13
13
  venv
14
+ .venv
15
+
16
+ .env
17
+ cache
18
+
19
+ .DS_Store
@@ -0,0 +1,30 @@
1
+ # Build and Publish Guide
2
+
3
+ ## Pre-requisites
4
+
5
+ - `maturin`
6
+ - `docker`
7
+ - run `docker build . -t bgpkit-builder:latest` to build the builder image
8
+
9
+ ## Checklist
10
+
11
+ 1. run [`build.sh`](./build.sh) on Apple Silicon Mac
12
+ 2. run [`build.sh`](./build.sh) inside docker on Apple Silicon Mac
13
+ 3. run [`build.sh`](./build.sh) on Intel Mac
14
+ 4. run [`build.sh`](./build.sh) inside docker on Intel Mac
15
+
16
+ ## Build Linux packages in Docker
17
+
18
+ Build image using the [Dockerfile](./Dockerfile) provided
19
+ ```
20
+ docker build -t bgpkit-builder:latest .
21
+ ```
22
+
23
+ Run `docker run --rm -it bgpkit-builder:latest bash` to open a shell in the container
24
+ ```bash
25
+ ####
26
+ # TODO: copy the content of .pypirc to the root folder
27
+ ####
28
+
29
+ bash build.sh
30
+ ```
@@ -0,0 +1,10 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## 0.5.1 - 2024-02-28
6
+
7
+ ### Highlights
8
+
9
+ * update `bgpkit-parser` to v0.10.1, which fixes a performance regression introduced in 0.10.0.
10
+