Projects STRLCPY LIEF Commits dd137110
🤬
  • ■ ■ ■ ■
    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 "3")
     25 + set(LIEF_VERSION_PATCH "4")
    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.11.X - Patch Releases
     5 +-----------------------
     6 + 
     7 +.. _release-0114:
     8 + 
     9 +0.11.4 - March 09, 2021
     10 +~~~~~~~~~~~~~~~~~~~~~~~
     11 + 
     12 +:PE:
     13 + * Fix missing bound check when computing the authentihash
     14 + 
    4 15  .. _release-0113:
    5 16   
    6 17  0.11.3 - March 03, 2021
    7  ---------------------------
     18 +~~~~~~~~~~~~~~~~~~~~~~~
    8 19   
    9 20  :PE:
    10 21   * Add sanity check on the signature's length that could lead to a ``std::bad_alloc`` exception
    skipped 2 lines
    13 24   
    14 25   
    15 26  0.11.2 - February 24, 2021
    16  ---------------------------
     27 +~~~~~~~~~~~~~~~~~~~~~~~~~~
    17 28   
    18 29  :PE:
    19 30   * Fix regression in the behavior of the PE section's name. One can now access the full
    skipped 2 lines
    22 33  .. _release-0111:
    23 34   
    24 35  0.11.1 - February 22, 2021
    25  ---------------------------
     36 +~~~~~~~~~~~~~~~~~~~~~~~~~~
    26 37   
    27 38  :PE:
    28 39   * :meth:`lief.PE.x509.is_trusted_by` and :meth:`lief.PE.x509.verify` now return
    skipped 789 lines
  • ■ ■ ■ ■
    setup.py
    skipped 425 lines
    426 426   
    427 427   
    428 428  def get_version() -> str:
    429  - version = "0.11.3"
     429 + version = "0.11.4"
    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