4
0
mirror of https://github.com/QuasarApp/LIEF.git synced 2025-05-14 04:09:33 +00:00
This commit is contained in:
Romain Thomas 2021-01-18 04:55:34 +01:00
parent 27547aec33
commit 62a2e8e8c6
2 changed files with 2 additions and 2 deletions

@ -21,7 +21,7 @@ if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git"
include(LIEFGit)
else()
set(LIEF_VERSION_MAJOR "0")
set(LIEF_VERSION_MINOR "10")
set(LIEF_VERSION_MINOR "11")
set(LIEF_VERSION_PATCH "0")
endif()

@ -415,7 +415,7 @@ def get_pkg_info_version(pkg_info_file):
def get_version() -> str:
version = "0.0.0"
version = "0.11.0"
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):