From 2d9855fc7f9d4ce6325245f8b75c98eb7663db60 Mon Sep 17 00:00:00 2001 From: Romain Thomas Date: Sat, 17 Jun 2023 13:56:27 +0200 Subject: [PATCH] Bump version --- CMakeLists.txt | 2 +- api/python/setup.py | 2 +- doc/sphinx/changelog.rst | 9 +++++++++ 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index eaf87f0a17..55012050ea 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -28,7 +28,7 @@ if(EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/.git" else() set(LIEF_VERSION_MAJOR "0") set(LIEF_VERSION_MINOR "13") - set(LIEF_VERSION_PATCH "1") + set(LIEF_VERSION_PATCH "2") endif() # LIEF Project diff --git a/api/python/setup.py b/api/python/setup.py index 8d7aacd75c..b1d9fa19d9 100644 --- a/api/python/setup.py +++ b/api/python/setup.py @@ -187,7 +187,7 @@ class Versioning: IS_TAGGED_CMD = '{git} tag --list --points-at=HEAD' FMT_DEV = '{tag}.dev0' FMT_TAGGED = '{tag}' - DEFAULT_VERSION = "0.13.1" + DEFAULT_VERSION = "0.13.2" def __init__(self): self._git = which("git") diff --git a/doc/sphinx/changelog.rst b/doc/sphinx/changelog.rst index c78ca8d64c..6bdc5b8727 100644 --- a/doc/sphinx/changelog.rst +++ b/doc/sphinx/changelog.rst @@ -1,6 +1,15 @@ Changelog ========= +0.13.2 - June 17, 2023 +---------------------- + +:PE: + + * Fix authenticode inconsitency (:issue:`932`) + * Fix missing undef (:pr:`929`) + + 0.13.1 - May 28, 2023 ----------------------