Skip to content
This repository has been archived by the owner on Sep 19, 2024. It is now read-only.

Commit

Permalink
bump 0.5.0 (#143)
Browse files Browse the repository at this point in the history
  • Loading branch information
bonifaido authored Jan 18, 2024
1 parent 21f9ad9 commit d59b0c2
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Thu, 18 Dec 2024 21:35:07 +0100

camblet-driver (0.4.0) unstable; urgency=medium

* Create a new make target bump version (#128)
Expand Down
2 changes: 1 addition & 1 deletion dkms.conf
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
MODULE_AUTHOR("Camblet Maintainers <[email protected]>");
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;
Expand Down
Original file line number Diff line number Diff line change
@@ -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.

Expand Down

0 comments on commit d59b0c2

Please sign in to comment.