diff --git a/CMakeLists.txt b/CMakeLists.txt index d00f7facb4..fb044e6651 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git" else() set(LIEF_VERSION_MAJOR "0") set(LIEF_VERSION_MINOR "11") - set(LIEF_VERSION_PATCH "3") + set(LIEF_VERSION_PATCH "4") endif() # LIEF Project diff --git a/doc/sphinx/changelog.rst b/doc/sphinx/changelog.rst index 60255e00a3..68cd77c835 100644 --- a/doc/sphinx/changelog.rst +++ b/doc/sphinx/changelog.rst @@ -1,10 +1,21 @@ Changelog ========= +0.11.X - Patch Releases +----------------------- + +.. _release-0114: + +0.11.4 - March 09, 2021 +~~~~~~~~~~~~~~~~~~~~~~~ + +:PE: + * Fix missing bound check when computing the authentihash + .. _release-0113: 0.11.3 - March 03, 2021 --------------------------- +~~~~~~~~~~~~~~~~~~~~~~~ :PE: * Add sanity check on the signature's length that could lead to a ``std::bad_alloc`` exception @@ -13,7 +24,7 @@ Changelog 0.11.2 - February 24, 2021 --------------------------- +~~~~~~~~~~~~~~~~~~~~~~~~~~ :PE: * Fix regression in the behavior of the PE section's name. One can now access the full @@ -22,7 +33,7 @@ Changelog .. _release-0111: 0.11.1 - February 22, 2021 --------------------------- +~~~~~~~~~~~~~~~~~~~~~~~~~~ :PE: * :meth:`lief.PE.x509.is_trusted_by` and :meth:`lief.PE.x509.verify` now return diff --git a/setup.py b/setup.py index 935501c300..eaa5cee331 100644 --- a/setup.py +++ b/setup.py @@ -426,7 +426,7 @@ def get_pkg_info_version(pkg_info_file): def get_version() -> str: - version = "0.11.3" + version = "0.11.4" pkg_info = os.path.join(CURRENT_DIR, "{}.egg-info".format(PACKAGE_NAME), "PKG-INFO") git_dir = os.path.join(CURRENT_DIR, ".git") if os.path.isdir(git_dir):