From 889387b0001b783514523162de21af406e31a549 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0karvada?= Date: Mon, 3 Feb 2025 20:17:00 +0100 Subject: [PATCH] new release (2.25.1) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jaroslav Škarvada --- tuned.spec | 11 ++++++++++- tuned/version.py | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/tuned.spec b/tuned.spec index e47ccdd8..87c379e6 100644 --- a/tuned.spec +++ b/tuned.spec @@ -59,7 +59,7 @@ Summary: A dynamic adaptive system tuning daemon Name: tuned -Version: 2.25.0 +Version: 2.25.1 Release: 1%{?prerel1}%{?with_snapshot:.%{git_suffix}}%{?dist} License: GPL-2.0-or-later AND CC-BY-SA-3.0 Source0: https://github.com/redhat-performance/%{name}/archive/v%{version}%{?prerel2}/%{name}-%{version}%{?prerel2}.tar.gz @@ -638,6 +638,15 @@ fi %config(noreplace) %{_sysconfdir}/tuned/ppd.conf %changelog +* Mon Feb 3 2025 Jaroslav Škarvada - 2.25.1-1 +- new release + - plugins: added missing instance parameters + - disk: added missing remove parameter + - plugin_scheduler: added switch to disable processing of kthreads + - Makefile: added support for installation to custom LIBEXECDIR + - functions: create a new parser object for each string expansion + resolves: RHEL-75773 + * Fri Jan 31 2025 Jaroslav Škarvada - 2.25.0-1 - new release - sap-hana: Set transparent_hugepages to madvise diff --git a/tuned/version.py b/tuned/version.py index 2b7f22ea..9a5474dc 100644 --- a/tuned/version.py +++ b/tuned/version.py @@ -1,5 +1,5 @@ TUNED_VERSION_MAJOR = 2 TUNED_VERSION_MINOR = 25 -TUNED_VERSION_PATCH = 0 +TUNED_VERSION_PATCH = 1 TUNED_VERSION_STR = "%d.%d.%d" % (TUNED_VERSION_MAJOR, TUNED_VERSION_MINOR, TUNED_VERSION_PATCH)