Projects STRLCPY LIEF Commits 980ed6b3
🤬
  • ■ ■ ■ ■
    CMakeLists.txt
    skipped 21 lines
    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
    skipped 601 lines
  • ■ ■ ■ ■ ■ ■
    doc/sphinx/changelog.rst
    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   
    skipped 782 lines
  • ■ ■ ■ ■
    setup.py
    skipped 425 lines
    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):
    skipped 29 lines
Please wait...
Page is in error, reload to recover