From bce109ab54dcba4fe16646f35daef32215b62bda Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Fri, 28 Oct 2022 17:10:52 +0200 Subject: [PATCH] all: post-release version bump --- CMakeLists.txt | 2 +- NEWS | 3 +++ doc/upx.1 | 2 +- src/version.h | 10 +++++----- 4 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 22db99aa..7b6e8c6a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -49,7 +49,7 @@ else() message(STATUS "UPX_VERSION_GITREV: not set") endif() -project(upx VERSION 4.0.0 LANGUAGES C CXX) +project(upx VERSION 4.0.1 LANGUAGES C CXX) # set default build type to "Release" get_property(is_multi_config GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG) diff --git a/NEWS b/NEWS index 526b8877..3578f685 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,9 @@ User visible changes for UPX ================================================================== +Changes in 4.0.1 (XX XXXX 2022): + * bug fixes - see https://github.com/upx/upx/milestone/8 + Changes in 4.0.0 (28 Oct 2022): * Switch to semantic versioning * SECURITY NOTES: emphasize the security context in the docs diff --git a/doc/upx.1 b/doc/upx.1 index 494f1b06..fb7e6163 100644 --- a/doc/upx.1 +++ b/doc/upx.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "UPX 1" -.TH UPX 1 "2022-10-28" "upx 4.0.0" " " +.TH UPX 1 "2022-10-29" "upx 4.0.1" " " .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l diff --git a/src/version.h b/src/version.h index 35b3a826..1fb7b28e 100644 --- a/src/version.h +++ b/src/version.h @@ -1,8 +1,8 @@ -#define UPX_VERSION_HEX 0x040000 /* 04.00.00 */ -#define UPX_VERSION_STRING "4.0.0" -#define UPX_VERSION_STRING4 "4.00" -#define UPX_VERSION_DATE "Oct 28th 2022" -#define UPX_VERSION_DATE_ISO "2022-10-28" +#define UPX_VERSION_HEX 0x040001 /* 04.00.01 */ +#define UPX_VERSION_STRING "4.0.1" +#define UPX_VERSION_STRING4 "4.01" +#define UPX_VERSION_DATE "Oct 29th 2022" +#define UPX_VERSION_DATE_ISO "2022-10-29" #define UPX_VERSION_YEAR "2022" /* vim:set ts=4 sw=4 et: */