From 82abd753919656ccd210f63eeff80af7729df85e Mon Sep 17 00:00:00 2001 From: Badr Date: Mon, 16 Sep 2024 20:53:45 +0200 Subject: [PATCH] release v0.2 (#15) --- Cargo.lock | 4 ++-- Cargo.toml | 1 + Readme.md | 2 +- Release.md | 10 ++++++++++ oryx-common/Cargo.toml | 2 +- oryx-ebpf/Cargo.lock | 4 ++-- oryx-ebpf/Cargo.toml | 2 +- oryx-tui/Cargo.toml | 2 +- 8 files changed, 19 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d4afa15..78affc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -587,14 +587,14 @@ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" [[package]] name = "oryx-common" -version = "0.1.0" +version = "0.2.0" dependencies = [ "network-types", ] [[package]] name = "oryx-tui" -version = "0.1.0" +version = "0.2.0" dependencies = [ "aya", "clap", diff --git a/Cargo.toml b/Cargo.toml index 73a9163..44b2a11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,6 +5,7 @@ members = ["xtask", "oryx-tui", "oryx-common"] [workspace.package] description = "TUI for sniffing network traffic using eBPF" authors = ["Badr Badri "] +version = "0.2.0" readme = "Readme.md" license = "GPL-3.0" edition = "2021" diff --git a/Readme.md b/Readme.md index c858a8b..49f5215 100644 --- a/Readme.md +++ b/Readme.md @@ -4,7 +4,7 @@ ## 📸 Demo -![](https://github.com/user-attachments/assets/437dcfbd-62a5-4505-909b-0410f2378f67) +![](https://github.com/user-attachments/assets/f6960d39-1d03-42d5-9601-a41619998f2a) ## ✨ Features diff --git a/Release.md b/Release.md index 526e0da..afefa57 100644 --- a/Release.md +++ b/Release.md @@ -1,3 +1,13 @@ +## v0.2 - 2024-09-16 + +### Added + +- Support for ARP protocol + +### Fixed + +- high cpu usage + ## v0.1 - 2024-09-01 First release 🎉 diff --git a/oryx-common/Cargo.toml b/oryx-common/Cargo.toml index c30d7dd..c08e504 100644 --- a/oryx-common/Cargo.toml +++ b/oryx-common/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "oryx-common" -version = "0.1.0" description = "oryx common" +version.workspace = true authors.workspace = true license.workspace = true repository.workspace = true diff --git a/oryx-ebpf/Cargo.lock b/oryx-ebpf/Cargo.lock index 80213f0..8f092b6 100644 --- a/oryx-ebpf/Cargo.lock +++ b/oryx-ebpf/Cargo.lock @@ -49,14 +49,14 @@ checksum = "e82e9f64c09f56aa7c80c3fa087997bd99a913f91d9c74d36cf5fd75dd5773e6" [[package]] name = "oryx-common" -version = "0.1.0" +version = "0.2.0" dependencies = [ "network-types", ] [[package]] name = "oryx-ebpf" -version = "0.1.0" +version = "0.2.0" dependencies = [ "aya-ebpf", "network-types", diff --git a/oryx-ebpf/Cargo.toml b/oryx-ebpf/Cargo.toml index 7685f2d..fe1cc13 100644 --- a/oryx-ebpf/Cargo.toml +++ b/oryx-ebpf/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oryx-ebpf" -version = "0.1.0" +version = "0.2.0" description = "oryx eBPF" license = "GPL-3.0" edition = "2021" diff --git a/oryx-tui/Cargo.toml b/oryx-tui/Cargo.toml index 388f15b..6871d6d 100644 --- a/oryx-tui/Cargo.toml +++ b/oryx-tui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oryx-tui" -version = "0.1.0" +version.workspace = true description.workspace = true authors.workspace = true license.workspace = true