Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Mar 9, 2021
1 parent d345ac7 commit dd13711
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git"
else()
set(LIEF_VERSION_MAJOR "0")
set(LIEF_VERSION_MINOR "11")
set(LIEF_VERSION_PATCH "3")
set(LIEF_VERSION_PATCH "4")
endif()

# LIEF Project
Expand Down
17 changes: 14 additions & 3 deletions doc/sphinx/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
Changelog
=========

0.11.X - Patch Releases
-----------------------

.. _release-0114:

0.11.4 - March 09, 2021
~~~~~~~~~~~~~~~~~~~~~~~

:PE:
* Fix missing bound check when computing the authentihash

.. _release-0113:

0.11.3 - March 03, 2021
--------------------------
~~~~~~~~~~~~~~~~~~~~~~~

:PE:
* Add sanity check on the signature's length that could lead to a ``std::bad_alloc`` exception
Expand All @@ -13,7 +24,7 @@ Changelog


0.11.2 - February 24, 2021
--------------------------
~~~~~~~~~~~~~~~~~~~~~~~~~~

:PE:
* Fix regression in the behavior of the PE section's name. One can now access the full
Expand All @@ -22,7 +33,7 @@ Changelog
.. _release-0111:

0.11.1 - February 22, 2021
--------------------------
~~~~~~~~~~~~~~~~~~~~~~~~~~

:PE:
* :meth:`lief.PE.x509.is_trusted_by` and :meth:`lief.PE.x509.verify` now return
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ def get_pkg_info_version(pkg_info_file):


def get_version() -> str:
version = "0.11.3"
version = "0.11.4"
pkg_info = os.path.join(CURRENT_DIR, "{}.egg-info".format(PACKAGE_NAME), "PKG-INFO")
git_dir = os.path.join(CURRENT_DIR, ".git")
if os.path.isdir(git_dir):
Expand Down

0 comments on commit dd13711

Please sign in to comment.