From d59b0c273207743050f58df553f06d066af6b7f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A1ndor=20Istv=C3=A1n=20Kr=C3=A1cser?= Date: Thu, 18 Jan 2024 21:43:24 +0100 Subject: [PATCH] bump 0.5.0 (#143) --- README.md | 10 +++++----- debian/changelog | 7 +++++++ dkms.conf | 2 +- main.c | 2 +- ...{camblet-kernel-module.spec => camblet-driver.spec} | 2 +- 5 files changed, 15 insertions(+), 8 deletions(-) rename rpmbuild/SPECS/{camblet-kernel-module.spec => camblet-driver.spec} (98%) diff --git a/README.md b/README.md index 1268b5cb..1a7ba857 100644 --- a/README.md +++ b/README.md @@ -195,13 +195,13 @@ sudo dnf install dkms The Camblet can be installed with DKMS in the following way currently: ```bash -sudo git clone --recurse-submodule https://github.com/cisco-open/camblet-driver.git /usr/src/camblet-0.4.0/ +sudo git clone --recurse-submodule https://github.com/cisco-open/camblet-driver.git /usr/src/camblet-0.5.0/ # Add the kernel module to the DKMS source control -sudo dkms add -m camblet -v 0.4.0 +sudo dkms add -m camblet -v 0.5.0 # Build and install the kernel module against the current kernel version -sudo dkms install -m camblet -v 0.4.0 +sudo dkms install -m camblet -v 0.5.0 # Load the kernel module sudo modprobe camblet @@ -217,8 +217,8 @@ Un-installation is very simple as well: sudo modprobe -r camblet # Remove the kernel module from DKMS source control -sudo dkms uninstall -m camblet -v 0.4.0 -sudo dkms remove -m camblet -v 0.4.0 +sudo dkms uninstall -m camblet -v 0.5.0 +sudo dkms remove -m camblet -v 0.5.0 ``` ### Debian package diff --git a/debian/changelog b/debian/changelog index df5f2d26..ffc18a64 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +camblet-driver (0.5.0) unstable; urgency=medium + + * Contains a fix for KTLS issues + * Project and code structure renaming + + -- Camblet maintainers Thu, 18 Dec 2024 21:35:07 +0100 + camblet-driver (0.4.0) unstable; urgency=medium * Create a new make target bump version (#128) diff --git a/dkms.conf b/dkms.conf index 29da2d3c..69b66898 100644 --- a/dkms.conf +++ b/dkms.conf @@ -1,5 +1,5 @@ PACKAGE_NAME="camblet" -PACKAGE_VERSION="0.4.0" +PACKAGE_VERSION="0.5.0" BUILT_MODULE_NAME[0]="camblet" BUILT_MODULE_NAME[1]="bearssl" MAKE[0]="make" diff --git a/main.c b/main.c index 9939bf0f..04010029 100644 --- a/main.c +++ b/main.c @@ -28,7 +28,7 @@ MODULE_AUTHOR("Camblet Maintainers "); MODULE_LICENSE("Dual MIT/GPL"); MODULE_DESCRIPTION("Camblet - Kernel Space Access Control for Zero Trust Networking"); -MODULE_VERSION("0.3.0"); +MODULE_VERSION("0.5.0"); MODULE_SOFTDEP("pre: tls"); static bool proxywasm_modules = false; diff --git a/rpmbuild/SPECS/camblet-kernel-module.spec b/rpmbuild/SPECS/camblet-driver.spec similarity index 98% rename from rpmbuild/SPECS/camblet-kernel-module.spec rename to rpmbuild/SPECS/camblet-driver.spec index 81187b01..c3c2fc2b 100644 --- a/rpmbuild/SPECS/camblet-kernel-module.spec +++ b/rpmbuild/SPECS/camblet-driver.spec @@ -1,5 +1,5 @@ Name: camblet-driver -Version: 0.4.0 +Version: 0.5.0 Release: 1%{?dist} Summary: Kernel module for the Camblet project.