Skip to content

Commit 980ed6b

Browse files
committed
Update changelog
1 parent a6d9ea9 commit 980ed6b

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git"
2222
else()
2323
set(LIEF_VERSION_MAJOR "0")
2424
set(LIEF_VERSION_MINOR "11")
25-
set(LIEF_VERSION_PATCH "0")
25+
set(LIEF_VERSION_PATCH "1")
2626
endif()
2727

2828
# LIEF Project

doc/sphinx/changelog.rst

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
Changelog
22
=========
33

4-
0.12.0 - Not Released Yet
5-
-------------------------
4+
.. _release-0111:
5+
6+
0.11.1 - February 22, 2021
7+
--------------------------
68

79
:PE:
8-
:meth:`lief.PE.x509.is_trusted_by` and :meth:`lief.PE.x509.verify` now return
9-
a better :attr:`lief.PE.x509.VERIFICATION_FLAGS` instead of just :attr:`lief.PE.x509.VERIFICATION_FLAGS.BADCERT_NOT_TRUSTED`
10-
(see: :issue:`532`)
10+
* :meth:`lief.PE.x509.is_trusted_by` and :meth:`lief.PE.x509.verify` now return
11+
a better :attr:`lief.PE.x509.VERIFICATION_FLAGS` instead of just :attr:`lief.PE.x509.VERIFICATION_FLAGS.BADCERT_NOT_TRUSTED`
12+
(see: :issue:`532`)
13+
* Fix errors in the computation of the Authentihash
1114

12-
:MachO:
13-
* Fix error on property :attr:`lief.MachO.BuildVersion.sdk` (see :issue:`533`)
1415

1516
.. _release-0110:
1617

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ def get_pkg_info_version(pkg_info_file):
426426

427427

428428
def get_version() -> str:
429-
version = "0.11.0"
429+
version = "0.11.1"
430430
pkg_info = os.path.join(CURRENT_DIR, "{}.egg-info".format(PACKAGE_NAME), "PKG-INFO")
431431
git_dir = os.path.join(CURRENT_DIR, ".git")
432432
if os.path.isdir(git_dir):

0 commit comments

Comments
 (0)