4
0
mirror of https://github.com/QuasarApp/LIEF.git synced 2025-05-10 10:49:33 +00:00

Update changelog

This commit is contained in:
Romain Thomas 2021-02-22 13:38:24 +01:00
parent a6d9ea90a2
commit 980ed6b3fb
3 changed files with 10 additions and 9 deletions

@ -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 "0")
set(LIEF_VERSION_PATCH "1")
endif()
# LIEF Project

@ -1,16 +1,17 @@
Changelog
=========
0.12.0 - Not Released Yet
-------------------------
.. _release-0111:
0.11.1 - February 22, 2021
--------------------------
:PE:
:meth:`lief.PE.x509.is_trusted_by` and :meth:`lief.PE.x509.verify` now return
a better :attr:`lief.PE.x509.VERIFICATION_FLAGS` instead of just :attr:`lief.PE.x509.VERIFICATION_FLAGS.BADCERT_NOT_TRUSTED`
(see: :issue:`532`)
* :meth:`lief.PE.x509.is_trusted_by` and :meth:`lief.PE.x509.verify` now return
a better :attr:`lief.PE.x509.VERIFICATION_FLAGS` instead of just :attr:`lief.PE.x509.VERIFICATION_FLAGS.BADCERT_NOT_TRUSTED`
(see: :issue:`532`)
* Fix errors in the computation of the Authentihash
:MachO:
* Fix error on property :attr:`lief.MachO.BuildVersion.sdk` (see :issue:`533`)
.. _release-0110:

@ -426,7 +426,7 @@ def get_pkg_info_version(pkg_info_file):
def get_version() -> str:
version = "0.11.0"
version = "0.11.1"
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):