diff --git a/CMakeLists.txt b/CMakeLists.txt index dfe53806..4aef09b7 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.1.0 LANGUAGES C CXX) +project(upx VERSION 4.2.0 LANGUAGES C CXX) # set the default multi-config build type to "Release" if(is_multi_config) diff --git a/NEWS b/NEWS index 45fdf53a..bff500f5 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,9 @@ User visible changes for UPX ================================================================== +Changes in 4.2.0 (XX XXX 2023): + * bug fixes - see https://github.com/upx/upx/milestone/13 + Changes in 4.1.0 (08 Aug 2023): * ELF: handle shared libraries with more than 2 PT_LOAD segments * bug fixes - see https://github.com/upx/upx/milestone/11 diff --git a/doc/upx.1 b/doc/upx.1 index 9659e90a..f33d8122 100644 --- a/doc/upx.1 +++ b/doc/upx.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "UPX 1" -.TH UPX 1 "2023-08-08" "upx 4.1.0" " " +.TH UPX 1 "2023-08-08" "upx 4.2.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 324406b8..4349ff64 100644 --- a/src/version.h +++ b/src/version.h @@ -1,6 +1,6 @@ -#define UPX_VERSION_HEX 0x040100 /* 04.01.00 */ -#define UPX_VERSION_STRING "4.1.0" -#define UPX_VERSION_STRING4 "4.10" +#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 "Aug 8th 2023" #define UPX_VERSION_DATE_ISO "2023-08-08" #define UPX_VERSION_YEAR "2023"