diff --git a/CMakeLists.txt b/CMakeLists.txt index b89d0522c5..7d59f141b6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,7 +29,7 @@ if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git" else() set(LIEF_VERSION_MAJOR "0") set(LIEF_VERSION_MINOR "12") - set(LIEF_VERSION_PATCH "1") + set(LIEF_VERSION_PATCH "2") endif() # LIEF Project diff --git a/doc/sphinx/changelog.rst b/doc/sphinx/changelog.rst index 25240c6517..f9bcb83f84 100644 --- a/doc/sphinx/changelog.rst +++ b/doc/sphinx/changelog.rst @@ -1,6 +1,12 @@ Changelog ========= + +0.12.2 - September 11, 2022 +--------------------------- + +* Fix setuptools issue (:issue:`770`) + 0.12.1 - April 08, 2022 ------------------------ diff --git a/setup.py b/setup.py index 622eac34b5..7af3e20331 100644 --- a/setup.py +++ b/setup.py @@ -457,7 +457,7 @@ def get_pkg_info_version(pkg_info_file): def get_version() -> str: - version = "0.12.1" + version = "0.12.2" 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):