From ddc12657b5fedb8eddbb6bd4625616595ba7ea64 Mon Sep 17 00:00:00 2001 From: Ignaz Forster Date: Mon, 20 Nov 2023 18:09:46 +0100 Subject: [PATCH] Release version 4.5.0 --- NEWS | 16 +++++++++++++++- configure.ac | 8 ++++---- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/NEWS b/NEWS index 11e6453..ab6b481 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,20 @@ transactional-update NEWS -- history of user-visible changes. -Copyright (C) 2016-2022 Thorsten Kukuk, Ignaz Forster et al. +Copyright (C) 2016-2023 Thorsten Kukuk, Ignaz Forster et al. + +Version 4.5.0 (2023-11-20) +* libtukit: Use permissions of real /etc when creating overlay + [bsc#1215878] +* libtukit, tukit: Support "rollback" via library now +* tukitd: Implement Snapshot delete and rollback methods +* tukit: Check for missing arguments with "close" and "abort" commands +* t-u: Warn user when using "kdump" if it isn't configured to avoid + confusion with "setup-kdump" [boo#1215725] +* t-u: Abort if mkdumprd run is not successful +* t-u: Use defaut from config file if t-u is called without arguments + [gh#openSUSE/transactional-update#101] +* Improved README.md [gh#openSUSE/transactional-update#59] and API docs +* Code cleanup Version 4.4.0 * t-u: Introduce setup-fips command [jsc#SMO-194] diff --git a/configure.ac b/configure.ac index 6558368..02db38b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,11 +1,11 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(transactional-update, 4.4.0) +AC_INIT(transactional-update, 4.5.0) # Increase on any interface change and reset revision -LIBTOOL_CURRENT=4 +LIBTOOL_CURRENT=5 # On interface change increase if backwards compatible, reset otherwise -LIBTOOL_AGE=0 +LIBTOOL_AGE=1 # Increase on *any* C/C++ library code change, reset at interface change -LIBTOOL_REVISION=7 +LIBTOOL_REVISION=0 AC_CANONICAL_SYSTEM AM_INIT_AUTOMAKE([foreign]) AC_CONFIG_FILES([tukit.pc])