Skip to content

Commit 7480983

Browse files
committed
new release (2.25.0-rc.1)
Signed-off-by: Jaroslav Škarvada <[email protected]>
1 parent b36960b commit 7480983

File tree

2 files changed

+31
-6
lines changed

2 files changed

+31
-6
lines changed

tuned.spec

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,16 @@
5151
%global git_suffix %{git_date}git%{git_short_commit}
5252
%endif
5353

54-
#%%global prerelease rc
55-
#%%global prereleasenum 1
54+
%global prerelease rc
55+
%global prereleasenum 1
5656

5757
%global prerel1 %{?prerelease:.%{prerelease}%{prereleasenum}}
5858
%global prerel2 %{?prerelease:-%{prerelease}.%{prereleasenum}}
5959

6060
Summary: A dynamic adaptive system tuning daemon
6161
Name: tuned
62-
Version: 2.24.1
63-
Release: 1%{?prerel1}%{?with_snapshot:.%{git_suffix}}%{?dist}
62+
Version: 2.25.0
63+
Release: 0.1%{?prerel1}%{?with_snapshot:.%{git_suffix}}%{?dist}
6464
License: GPL-2.0-or-later AND CC-BY-SA-3.0
6565
Source0: https://github.com/redhat-performance/%{name}/archive/v%{version}%{?prerel2}/%{name}-%{version}%{?prerel2}.tar.gz
6666
URL: http://www.tuned-project.org/
@@ -638,6 +638,31 @@ fi
638638
%config(noreplace) %{_sysconfdir}/tuned/ppd.conf
639639

640640
%changelog
641+
* Sun Jan 19 2025 Jaroslav Škarvada <[email protected]> - 2.25.0-0.1.rc1
642+
- new release
643+
- tuned-ppd: removed the use of StrEnum
644+
resolves: RHEL-68208
645+
- tuned-ppd: multiple fixes and updates
646+
- docs: plugins docs are now automatically generated from the docstrings
647+
- plugin_cpu: fixed no_turbo boolean option parsing
648+
resolves: RHEL-51760
649+
- plugin_cpu: allowed raw energy_performance_preference values
650+
- plugin_vm: added support for dirty_(bytes|ratio) sysctl parameters
651+
resolves: RHEL-58820
652+
- plugin_bootloader: added variables to BLS entries only if grub is used
653+
- plugin_scheduler: do not assume that perf events have type attribute
654+
resolves: RHEL-60898
655+
- plugin_scheduler: updated sched knobs for kernels 6.6+
656+
- plugin_scheduler: log process info when its affinity cannot be changed
657+
resolves: RHEL-69933
658+
- plugin_scheduler: postpone cgroup blacklist check, double-check after fail
659+
resolves: RHEL-72981
660+
- plugin_scheduler: made perf support optional
661+
- plugin_net: added support for hotplug and rename
662+
resolves: RHEL-60906
663+
- makefile: added support for installation to custom $BINDIR/$SBINDIR
664+
- functions: dropped cpuspeed support
665+
641666
* Tue Nov 26 2024 Jaroslav Škarvada <[email protected]> - 2.24.1-1
642667
- new release
643668
- fixed privileged execution of arbitrary scripts by active local user

tuned/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TUNED_VERSION_MAJOR = 2
2-
TUNED_VERSION_MINOR = 24
3-
TUNED_VERSION_PATCH = 1
2+
TUNED_VERSION_MINOR = 25
3+
TUNED_VERSION_PATCH = 0
44

55
TUNED_VERSION_STR = "%d.%d.%d" % (TUNED_VERSION_MAJOR, TUNED_VERSION_MINOR, TUNED_VERSION_PATCH)

0 commit comments

Comments
 (0)