From 551ede538abeca63a158bd7c42b6b6337c92a26e Mon Sep 17 00:00:00 2001 From: Romain Thomas Date: Sat, 22 May 2021 10:18:10 +0200 Subject: [PATCH] Bump version --- CMakeLists.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b87c2e9f27..5c6a1ccba3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 "4") + set(LIEF_VERSION_PATCH "5") endif() # LIEF Project diff --git a/setup.py b/setup.py index 64ea946857..79e91b676f 100644 --- a/setup.py +++ b/setup.py @@ -426,7 +426,7 @@ def get_pkg_info_version(pkg_info_file): def get_version() -> str: - version = "0.11.4" + version = "0.11.5" 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):