Skip to content

Commit

Permalink
Prepare release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
baluchicken committed Apr 19, 2024
1 parent a4d6e44 commit 1516415
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 10 deletions.
14 changes: 7 additions & 7 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.7.0/
sudo git clone --recurse-submodule https://github.com/cisco-open/camblet-driver.git /usr/src/camblet-0.7.1/

# Add the kernel module to the DKMS source control
sudo dkms add -m camblet -v 0.7.0
sudo dkms add -m camblet -v 0.7.1

# Build and install the kernel module against the current kernel version
sudo dkms install -m camblet -v 0.7.0
sudo dkms install -m camblet -v 0.7.1

# 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.7.0
sudo dkms remove -m camblet -v 0.7.0
sudo dkms uninstall -m camblet -v 0.7.1
sudo dkms remove -m camblet -v 0.7.1
```

### Debian package
Expand All @@ -242,7 +242,7 @@ make deb
The package can be installed with the following command:

```bash
sudo apt install ../camblet-driver_0.7.0-1_all.deb
sudo apt install ../camblet-driver_0.7.1-1_all.deb
```

### RPM package
Expand All @@ -266,5 +266,5 @@ make rpm
The package can be installed with the following command:

```bash
sudo dnf install ../camblet-driver-0.7.0-1.noarch.rpm
sudo dnf install ../camblet-driver-0.7.1-1.noarch.rpm
```
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
camblet-driver (0.7.1) unstable; urgency=medium

* Fix deb build by copying all files to the right directory

-- Camblet maintainers <[email protected]> Thu, 18 Apr 2024 16:00:44 +0200

camblet-driver (0.7.0) unstable; urgency=medium

* socket: fix leaking tcp_connection_contexts and opa objects (#214)
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.7.0"
PACKAGE_VERSION="0.7.1"
BUILT_MODULE_NAME[0]="camblet"
BUILT_MODULE_NAME[1]="bearssl"
MAKE[0]="make"
Expand Down
5 changes: 4 additions & 1 deletion rpmbuild/SPECS/camblet-driver.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: camblet-driver
Version: 0.7.0
Version: 0.7.1
Release: 1%{?dist}
Summary: Kernel module for the Camblet project.

Expand Down Expand Up @@ -57,6 +57,9 @@ fi


%changelog
* Thu Apr 18 2024 Camblet maintainers <[email protected]> - 0.7.1-1
- Fix deb build by copying all files to the right directory

* Thu Apr 18 2024 Camblet maintainers <[email protected]> - 0.7.0-1
- socket: fix leaking tcp_connection_contexts and opa objects (#214)
- socket: fixes around camblet_get/setsockopt and recvmsg waiting and other things (#209)
Expand Down
2 changes: 1 addition & 1 deletion src/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.7.0");
MODULE_VERSION("0.7.1");
MODULE_SOFTDEP("pre: tls");

static bool proxywasm_modules = false;
Expand Down

0 comments on commit 1516415

Please sign in to comment.