From 6e644fa48066ee8644e0b008dcb3d93d4601c82f Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Thu, 28 Mar 2024 19:47:04 +0100 Subject: [PATCH] all: post-release version bump --- CMakeLists.txt | 2 +- NEWS | 3 +++ doc/upx.1 | 2 +- misc/cmake/use_strict_defaults.cmake | 0 misc/podman/rebuild-stubs/Dockerfile | 2 +- src/version.h | 10 +++++----- 6 files changed, 11 insertions(+), 8 deletions(-) create mode 100644 misc/cmake/use_strict_defaults.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 97e65d6b..f5a25a35 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,7 +58,7 @@ option(UPX_CONFIG_DISABLE_SELF_PACK_TEST "Do not test packing UPX with itself" O # init #*********************************************************************** -set(UPX_VERSION_STRING "4.2.3") # this should match src/version.h +set(UPX_VERSION_STRING "4.3.0") # this should match src/version.h upx_cmake_include_hook(2_init) diff --git a/NEWS b/NEWS index af7173bd..681290a7 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/17 + Changes in 4.2.3 (27 Mar 2024): * bug fixes - see https://github.com/upx/upx/milestone/16 diff --git a/doc/upx.1 b/doc/upx.1 index a4d59c48..54f34359 100644 --- a/doc/upx.1 +++ b/doc/upx.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "UPX 1" -.TH UPX 1 "2024-03-27" "upx 4.2.3" " " +.TH UPX 1 "2024-03-28" "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/misc/cmake/use_strict_defaults.cmake b/misc/cmake/use_strict_defaults.cmake new file mode 100644 index 00000000..e69de29b diff --git a/misc/podman/rebuild-stubs/Dockerfile b/misc/podman/rebuild-stubs/Dockerfile index adab77f4..902df3f8 100644 --- a/misc/podman/rebuild-stubs/Dockerfile +++ b/misc/podman/rebuild-stubs/Dockerfile @@ -45,7 +45,7 @@ RUN cd /root \ # install official UPX release binaries into /usr/local/bin; not required but convenient for testing RUN cd /root \ && wget -q https://github.com/upx/upx/releases/download/v3.91/upx-3.91-amd64_linux.tar.bz2 \ - && xzlist="3.92 3.93 3.94 3.95 3.96 4.0.0 4.0.1 4.0.2 4.1.0 4.2.0 4.2.1 4.2.2" \ + && xzlist="3.92 3.93 3.94 3.95 3.96 4.0.0 4.0.1 4.0.2 4.1.0 4.2.0 4.2.1 4.2.2 4.2.3" \ && for v in $xzlist; do wget -q https://github.com/upx/upx/releases/download/v${v}/upx-${v}-amd64_linux.tar.xz; done \ && for f in ./upx-*.tar.*; do tar -xoaf $f; done \ && for v in 3.91 $xzlist; do d=upx-${v}-amd64_linux; ./$d/upx -qq -d $d/upx -o /usr/local/bin/upx-${v}; done \ diff --git a/src/version.h b/src/version.h index 0f9553b1..39e03b36 100644 --- a/src/version.h +++ b/src/version.h @@ -1,7 +1,7 @@ #pragma once -#define UPX_VERSION_HEX 0x040203 /* 04.02.03 */ -#define UPX_VERSION_STRING "4.2.3" -#define UPX_VERSION_STRING4 "4.23" -#define UPX_VERSION_DATE "Mar 27th 2024" -#define UPX_VERSION_DATE_ISO "2024-03-27" +#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 "Mar 28th 2024" +#define UPX_VERSION_DATE_ISO "2024-03-28" #define UPX_VERSION_YEAR "2024"