From 10e93534169802be16fc9e2b3e9ac70d08efcb41 Mon Sep 17 00:00:00 2001 From: Wojtek Porczyk Date: Wed, 17 Apr 2024 18:05:00 +0200 Subject: [PATCH] Bump version to 1.7 Signed-off-by: Wojtek Porczyk --- debian/changelog | 16 ++++++++++++---- gramine.spec | 2 +- meson.build | 2 +- packaging/alpine/APKBUILD | 2 +- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/debian/changelog b/debian/changelog index d75df637b2..ff1b4acb8d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,15 @@ -gramine (1.6.2post~UNRELEASED) UNRELEASED; urgency=medium - - - -- Wojtek Porczyk Tue, 12 Mar 2024 09:34:38 +0100 +gramine (1.7) bookworm bullseye jammy focal; urgency=medium + + * version 1.7 + * added support for secure eventfd + * added support for operations on encrypted files (aka protected files): + * unlink() on corrupted files + * truncate() to arbitrary length + * added gramine-manifest-check tool and built-in manifest schema check in + gramine-sgx-sign + * updated curl to 8.7.1 + + -- Wojtek Porczyk Wed, 24 Apr 2024 09:27:25 +0200 gramine (1.6.2) bookworm bullseye jammy focal; urgency=medium diff --git a/gramine.spec b/gramine.spec index c54d6e9ef0..a9af28a95c 100644 --- a/gramine.spec +++ b/gramine.spec @@ -8,7 +8,7 @@ %endif Name: gramine -Version: 1.6.2post~UNRELEASED +Version: 1.7 Release: 1%{?dist} Group: Development Tools Summary: A lightweight usermode guest OS designed to run a single Linux application diff --git a/meson.build b/meson.build index 5b79edaeb8..963af4777c 100644 --- a/meson.build +++ b/meson.build @@ -5,7 +5,7 @@ project( 'gramine', 'c', 'cpp', - version: '1.6.2post~UNRELEASED', + version: '1.7', license: 'LGPLv3+', meson_version: '>=0.56', diff --git a/packaging/alpine/APKBUILD b/packaging/alpine/APKBUILD index a4ed8b8096..d58ea4ebec 100644 --- a/packaging/alpine/APKBUILD +++ b/packaging/alpine/APKBUILD @@ -1,7 +1,7 @@ # Contributor: Amie Raine # Maintainer: Amie Raine pkgname=gramine -_real_pkgver=1.6.2post~UNRELEASED +_real_pkgver=1.7 pkgver=$(printf %s "$_real_pkgver" | sed \ -e "s:post~UNRELEASED:_git$(printf %d 0x"$(git rev-parse HEAD 2>/dev/null | cut -c1-8)"):" \ -e 's:~:_:' \