From 8b9125f2877bf46d7d153d7913500c4075b7a441 Mon Sep 17 00:00:00 2001 From: cybersnakeh Date: Thu, 4 Jun 2026 19:21:18 +0200 Subject: [PATCH] release: emit sigstore protobuf bundles --- .github/workflows/release.yml | 2 +- deploy.sh | 4 ++-- security/snakeengine.te | 2 +- userland/CMakeLists.txt | 2 +- userland/include/snakedrv.h | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 83905c0..3fe9bca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -113,7 +113,7 @@ jobs: run: | set -euo pipefail for f in snakeengine-driver-*.tar.gz sigstore-verify-*-linux-amd64; do - cosign sign-blob --bundle "${f}.sigstore" "$f" + cosign sign-blob --new-bundle-format --bundle "${f}.sigstore" "$f" done sha256sum snakeengine-driver-*.tar.gz sigstore-verify-*-linux-amd64 \ | LC_ALL=C sort > SHA256SUMS diff --git a/deploy.sh b/deploy.sh index f1d96e7..b950261 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,6 +1,6 @@ #!/bin/bash # -# SnakeEngine Driver - Professional Deployment Script v2.0.1 +# SnakeEngine Driver - Professional Deployment Script v2.0.2 # # This script handles: # - Dependency checking and installation @@ -54,7 +54,7 @@ umask 022 SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" PROJECT_NAME="snakeengine" MODULE_NAME="snakedrv" -VERSION="2.0.1" +VERSION="2.0.2" # Installation paths PREFIX="${PREFIX:-/usr/local}" diff --git a/security/snakeengine.te b/security/snakeengine.te index 0c8b397..d2ccf36 100755 --- a/security/snakeengine.te +++ b/security/snakeengine.te @@ -14,7 +14,7 @@ # Removal: # sudo semodule -r snakeengine -policy_module(snakeengine, 2.0.1) +policy_module(snakeengine, 2.0.2) ######################################## # Type definitions diff --git a/userland/CMakeLists.txt b/userland/CMakeLists.txt index 3ca4580..c7a602c 100755 --- a/userland/CMakeLists.txt +++ b/userland/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.10) -project(libsnakedrv VERSION 2.0.1 LANGUAGES CXX) +project(libsnakedrv VERSION 2.0.2 LANGUAGES CXX) # Options option(BUILD_SHARED_LIBS "Build shared library" ON) diff --git a/userland/include/snakedrv.h b/userland/include/snakedrv.h index e0f0be9..8bfe694 100755 --- a/userland/include/snakedrv.h +++ b/userland/include/snakedrv.h @@ -25,8 +25,8 @@ #define SNAKEDRV_VERSION_MAJOR 2 #define SNAKEDRV_VERSION_MINOR 0 -#define SNAKEDRV_VERSION_PATCH 1 -#define SNAKEDRV_VERSION_STRING "2.0.1" +#define SNAKEDRV_VERSION_PATCH 2 +#define SNAKEDRV_VERSION_STRING "2.0.2" /* * Wire-compatibility ABI version.