Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Feb 22, 2021
1 parent a6d9ea9 commit 980ed6b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
15 changes: 8 additions & 7 deletions doc/sphinx/changelog.rst
Original file line number Diff line number Diff line change
@@ -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:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 980ed6b

Please sign in to comment.