Skip to content

Commit

Permalink
Bump version to v0.9.1
Browse files Browse the repository at this point in the history
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: fd8209a). 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 <[email protected]>
  • Loading branch information
yhcote committed Mar 11, 2020
1 parent b4d2a4e commit 0c3c219
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
23 changes: 22 additions & 1 deletion contrib/kpatch.spec
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -93,6 +93,27 @@ rm -rf %{buildroot}
%{_mandir}/man1/kpatch-build.1*

%changelog
* Wed Mar 11 2020 Yannick Cote <[email protected]> - 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 <[email protected]> - 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 <[email protected]> - 0.8.0
- kpatch.ko atomic replace fixes
- Fixes for potential problems found by covscan
Expand Down
2 changes: 1 addition & 1 deletion kpatch/kpatch
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 0c3c219

Please sign in to comment.