Patch release v0.6.1

Create a minor release that includes fixes for:

* increase the transition timeout, helpful for large CPU count systems
* ppc64le WARN macro detection
* .parainstructions-related panic fix
* many, many unit/integration test cleanups and improvements
* properly align .parainstructions sections in patch module
* remove 'immediate' flag support from RHEL-7.6 onward
* initial GCC 8 support bugfixes
* support for RHEL kernel-alt release
* misc kpatch-build fixes and optimizations

Signed-off-by: Joe Lawrence <joe.lawrence@redhat.com>
This commit is contained in:
Joe Lawrence 2018-06-18 14:41:16 -04:00
parent 7dc6e5f215
commit 57def40805
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,6 @@
Name: kpatch Name: kpatch
Summary: Dynamic kernel patching Summary: Dynamic kernel patching
Version: 0.6.0 Version: 0.6.1
License: GPLv2 License: GPLv2
Group: System Environment/Kernel Group: System Environment/Kernel
URL: http://github.com/dynup/kpatch URL: http://github.com/dynup/kpatch
@ -93,6 +93,10 @@ rm -rf %{buildroot}
%{_mandir}/man1/kpatch-build.1* %{_mandir}/man1/kpatch-build.1*
%changelog %changelog
* Tue May 29 2018 Joe Lawrence <joe.lawrence@redhat.com> - 0.6.1
- Increase the transition timeout, helpful for large CPU count systems
- Miscellaneous unit testing, ppc64, etc. fixes
* Mon Apr 22 2018 Josh Poimboeuf <jpoimboe@redhat.com> - 0.6.0 * Mon Apr 22 2018 Josh Poimboeuf <jpoimboe@redhat.com> - 0.6.0
- Support and converted to livepatch-style hooks. - Support and converted to livepatch-style hooks.
- Lots of misc bugfixes and cleanups - Lots of misc bugfixes and cleanups

View File

@ -25,7 +25,7 @@
INSTALLDIR=/var/lib/kpatch INSTALLDIR=/var/lib/kpatch
SCRIPTDIR="$(readlink -f "$(dirname "$(type -p "$0")")")" SCRIPTDIR="$(readlink -f "$(dirname "$(type -p "$0")")")"
VERSION="0.6.0" VERSION="0.6.1"
POST_ENABLE_WAIT=15 # seconds POST_ENABLE_WAIT=15 # seconds
POST_SIGNAL_WAIT=60 # seconds POST_SIGNAL_WAIT=60 # seconds