Skip to content

Commit 3ac3471

Browse files
committed
Release v0.5
1 parent 4f02574 commit 3ac3471

File tree

7 files changed

+20
-35
lines changed

7 files changed

+20
-35
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
cargo binstall -y bpf-linker
3030
3131
- name: Build oryx-ebpf
32-
run: cargo xtask build-ebpf --release
32+
run: |
33+
cargo xtask build-ebpf
34+
cargo xtask build-ebpf --release
3335
3436
- name: Build for arm64 musl
3537
run: |

Cargo.lock

Lines changed: 2 additions & 2 deletions
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
@@ -5,7 +5,7 @@ members = ["xtask", "oryx-tui", "oryx-common"]
55
[workspace.package]
66
description = "TUI for sniffing network traffic using eBPF"
77
authors = ["Badr Badri <contact@pythops.com>"]
8-
version = "0.4.0"
8+
version = "0.5.0"
99
readme = "Readme.md"
1010
license = "GPL-3.0"
1111
edition = "2021"

Readme.md

Lines changed: 5 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
## 📸 Demo
66

7-
![](https://github.com/user-attachments/assets/e64dc4b6-9143-4b05-b4a8-b5d0455e5d5e)
7+
![](https://github.com/user-attachments/assets/54a21ac3-6c00-4700-8e4e-8f13e98cc189)
88

99
## ✨ Features
1010

@@ -47,29 +47,7 @@ rustup toolchain install nightly --component rust-src
4747

4848
#### 2. Install [bpf-linker](https://github.com/aya-rs/bpf-linker)
4949

50-
##### For `x86_64`
51-
52-
Simply run the following command:
53-
54-
```
55-
cargo install bpf-linker
56-
```
57-
58-
##### For `arm64`
59-
60-
For Debian based distributions, make sure you have the following dependencies installed:
61-
62-
- `llvm-19`
63-
- `llvm-19-dev`
64-
- `libpolly-19-dev`
65-
66-
then run the following command:
67-
68-
```
69-
cargo install bpf-linker --no-default-features
70-
```
71-
72-
> Check [bpf-linker Installation section](https://github.com/aya-rs/bpf-linker?tab=readme-ov-file#installation) for more infos.
50+
Check [bpf-linker Installation section](https://github.com/aya-rs/bpf-linker?tab=readme-ov-file#installation) .
7351

7452
#### 3. Build
7553

@@ -87,6 +65,9 @@ Run the following command to start `oryx`:
8765
sudo oryx
8866
```
8967

68+
> [!NOTE]
69+
> You can start `oryx` with args as well. Check `oryx --help` to see the available options
70+
9071
## ⌨️ Key Bindings
9172

9273
`?`: Show help.

Release.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
## v0.5 - TBA
1+
## v0.5 - 2025-03-10
2+
3+
### Added
24

35
- Ability to start `oryx` with options
4-
- Add metrics section
6+
- Add Metrics section
57

6-
### Added
8+
### Updated
79

8-
- stats: top 10 websites support ipv6
10+
- Stats section top 10 websites support ipv6
911

1012
## v0.4 - 2024-10-13
1113

oryx-ebpf/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oryx-ebpf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oryx-ebpf"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "oryx eBPF"
55
license = "GPL-3.0"
66
edition = "2021"

0 commit comments

Comments
 (0)