From 8102137ad7bd210f0fb63ea21a5b54db3e6b3f3c Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Thu, 26 Oct 2023 12:25:13 +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 4822823d..bb8db87b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -141,7 +141,7 @@ if(NOT is_multi_config AND NOT CMAKE_BUILD_TYPE) endif() # CMake init -project(upx VERSION 4.2.0 LANGUAGES C CXX) +project(upx VERSION 4.3.0 LANGUAGES C CXX) # set the default multi-config build type to "Release" if(is_multi_config) diff --git a/NEWS b/NEWS index 5446fee9..6b8da2eb 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,9 @@ User visible changes for UPX ================================================================== +Changes in 4.3.0 (XX XXX XXXX): + * bug fixes - see https://github.com/upx/upx/milestone/14 + Changes in 4.2.0 (26 Oct 2023): * win32/pe and win64/pe: stricter relocation checks; please report regressions * new option '--link' to preserve hard-links (Unix only; use with care) diff --git a/doc/upx.1 b/doc/upx.1 index 989923ab..4c990c65 100644 --- a/doc/upx.1 +++ b/doc/upx.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "UPX 1" -.TH UPX 1 "2023-10-26" "upx 4.2.0" " " +.TH UPX 1 "2023-10-27" "upx 4.3.0" " " .\" 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 c65a9649..6ca7c42b 100644 --- a/src/version.h +++ b/src/version.h @@ -1,7 +1,7 @@ #pragma once -#define UPX_VERSION_HEX 0x040200 /* 04.02.00 */ -#define UPX_VERSION_STRING "4.2.0" -#define UPX_VERSION_STRING4 "4.20" -#define UPX_VERSION_DATE "Oct 26th 2023" -#define UPX_VERSION_DATE_ISO "2023-10-26" +#define UPX_VERSION_HEX 0x040300 /* 04.03.00 */ +#define UPX_VERSION_STRING "4.3.0" +#define UPX_VERSION_STRING4 "4.30" +#define UPX_VERSION_DATE "Oct 27th 2023" +#define UPX_VERSION_DATE_ISO "2023-10-27" #define UPX_VERSION_YEAR "2023"