From 0c3c21930895f6582a5c9d9d797f7e11ff41ffb2 Mon Sep 17 00:00:00 2001 From: Yannick Cote Date: Wed, 11 Mar 2020 01:26:10 -0400 Subject: [PATCH] Bump version to v0.9.1 Increment version to v0.9.1 and update v0.9.0's changelog section following many fixes and improvements. *Note* that the tree has been tagged to v0.9.0 earlier at (commit: fd8209aa0052). This is to update the tree accordingly. Full list of changes: v0.9.1: - Handle ppc64le toc with only constants - Don't strip callback section symbols - Integration tests update - Fix -Wconversion warnings - Process debug sections last v0.9.0: - Many fixes in integration tests and adding rhel-8.0 - Updates to documentation - Many updates and additions to the patch author guide - Fix to relocations used for ZERO_PAGE(0) - Simplify static local variables correlation - Make symvers reading code more flexible - Free sections in elf teardown - Fix kpatch-test module unloading - Disable the build of kpatch.ko module by default - Simplify mangled function correlation - Use whole word filename matching in find_parent_obj() - Simplify relocation processing Signed-off-by: Yannick Cote --- contrib/kpatch.spec | 23 ++++++++++++++++++++++- kpatch/kpatch | 2 +- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/contrib/kpatch.spec b/contrib/kpatch.spec index 5159466d1..882d72986 100644 --- a/contrib/kpatch.spec +++ b/contrib/kpatch.spec @@ -1,6 +1,6 @@ Name: kpatch Summary: Dynamic kernel patching -Version: 0.8.0 +Version: 0.9.1 License: GPLv2 Group: System Environment/Kernel URL: http://github.com/dynup/kpatch @@ -93,6 +93,27 @@ rm -rf %{buildroot} %{_mandir}/man1/kpatch-build.1* %changelog +* Wed Mar 11 2020 Yannick Cote - 0.9.1 +- Handle ppc64le toc with only constants +- Don't strip callback section symbols +- Integration tests update +- Fix -Wconversion warnings +- Process debug sections last + +* Wed Mar 11 2020 Yannick Cote - 0.9.0 +- Many fixes in integration tests and adding rhel-8.0 +- Updates to documentation +- Many updates and additions to the patch author guide +- Fix to relocations used for ZERO_PAGE(0) +- Simplify static local variables correlation +- Make symvers reading code more flexible +- Free sections in elf teardown +- Fix kpatch-test module unloading +- Disable the build of kpatch.ko module by default +- Simplify mangled function correlation +- Use whole word filename matching in find_parent_obj() +- Simplify relocation processing + * Wed Aug 21 2019 Artem Savkov - 0.8.0 - kpatch.ko atomic replace fixes - Fixes for potential problems found by covscan diff --git a/kpatch/kpatch b/kpatch/kpatch index 26cb63b50..6cd9ad06e 100755 --- a/kpatch/kpatch +++ b/kpatch/kpatch @@ -25,7 +25,7 @@ INSTALLDIR=/var/lib/kpatch SCRIPTDIR="$(readlink -f "$(dirname "$(type -p "$0")")")" -VERSION="0.8.0" +VERSION="0.9.1" POST_ENABLE_WAIT=15 # seconds POST_SIGNAL_WAIT=60 # seconds