File tree 3 files changed +10
-9
lines changed
3 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git"
22
22
else ()
23
23
set (LIEF_VERSION_MAJOR "0" )
24
24
set (LIEF_VERSION_MINOR "11" )
25
- set (LIEF_VERSION_PATCH "0 " )
25
+ set (LIEF_VERSION_PATCH "1 " )
26
26
endif ()
27
27
28
28
# LIEF Project
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
- 0.12.0 - Not Released Yet
5
- -------------------------
4
+ .. _release-0111 :
5
+
6
+ 0.11.1 - February 22, 2021
7
+ --------------------------
6
8
7
9
: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
11
14
12
- :MachO:
13
- * Fix error on property :attr: `lief.MachO.BuildVersion.sdk ` (see :issue: `533 `)
14
15
15
16
.. _release-0110 :
16
17
Original file line number Diff line number Diff line change @@ -426,7 +426,7 @@ def get_pkg_info_version(pkg_info_file):
426
426
427
427
428
428
def get_version () -> str :
429
- version = "0.11.0 "
429
+ version = "0.11.1 "
430
430
pkg_info = os .path .join (CURRENT_DIR , "{}.egg-info" .format (PACKAGE_NAME ), "PKG-INFO" )
431
431
git_dir = os .path .join (CURRENT_DIR , ".git" )
432
432
if os .path .isdir (git_dir ):
You can’t perform that action at this time.
0 commit comments