Projects STRLCPY LIEF Commits e3ea0d51
🤬
  • ■ ■ ■ ■
    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 "2")
     25 + set(LIEF_VERSION_PATCH "3")
    26 26  endif()
    27 27   
    28 28  # LIEF Project
    skipped 601 lines
  • ■ ■ ■ ■ ■ ■
    doc/sphinx/changelog.rst
    1 1  Changelog
    2 2  =========
    3 3   
     4 +.. _release-0113:
     5 + 
     6 +0.11.3 - March 03, 2021
     7 +--------------------------
     8 + 
     9 +:PE:
     10 + * Add sanity check on the signature's length that could lead to a ``std::bad_alloc`` exception
     11 + 
     12 +.. _release-0112:
     13 + 
     14 + 
    4 15  0.11.2 - February 24, 2021
    5 16  --------------------------
    6 17   
    skipped 800 lines
  • ■ ■ ■ ■
    setup.py
    skipped 425 lines
    426 426   
    427 427   
    428 428  def get_version() -> str:
    429  - version = "0.11.2"
     429 + version = "0.11.3"
    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