From 33cdcb0e8277576cc64894bb332c469942864bcd Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Mon, 30 Jan 2023 11:18:06 +0100 Subject: [PATCH] all: prepare for release --- NEWS | 2 +- doc/upx.1 | 2 +- misc/rebuild-stubs-with-podman/Dockerfile | 4 ++-- src/version.h | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index 030d946a..ee3c6ce1 100644 --- a/NEWS +++ b/NEWS @@ -2,7 +2,7 @@ User visible changes for UPX ================================================================== -Changes in 4.0.2 (29 Jan 2023): +Changes in 4.0.2 (30 Jan 2023): * bug fixes - see https://github.com/upx/upx/milestone/9 Changes in 4.0.1 (16 Nov 2022): diff --git a/doc/upx.1 b/doc/upx.1 index 0a3bf5a4..e8d97257 100644 --- a/doc/upx.1 +++ b/doc/upx.1 @@ -133,7 +133,7 @@ .\" ======================================================================== .\" .IX Title "UPX 1" -.TH UPX 1 "2023-01-29" "upx 4.0.2" " " +.TH UPX 1 "2023-01-30" "upx 4.0.2" " " .\" 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/rebuild-stubs-with-podman/Dockerfile b/misc/rebuild-stubs-with-podman/Dockerfile index 50644f8d..d1e2df98 100644 --- a/misc/rebuild-stubs-with-podman/Dockerfile +++ b/misc/rebuild-stubs-with-podman/Dockerfile @@ -43,9 +43,9 @@ 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 \ - && for v in 3.92 3.93 3.94 3.95 3.96 4.0.0 4.0.1; do wget -q https://github.com/upx/upx/releases/download/v${v}/upx-${v}-amd64_linux.tar.xz; done \ + && for v in 3.92 3.93 3.94 3.95 3.96 4.0.0 4.0.1 4.0.2; 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 3.92 3.93 3.94 3.95 3.96 4.0.0 4.0.1; do d=upx-${v}-amd64_linux; ./$d/upx -qq -d $d/upx -o /usr/local/bin/upx-${v}; done \ + && for v in 3.91 3.92 3.93 3.94 3.95 3.96 4.0.0 4.0.1 4.0.2; do d=upx-${v}-amd64_linux; ./$d/upx -qq -d $d/upx -o /usr/local/bin/upx-${v}; done \ && rm -r ./upx-*.tar.* ./upx-*linux \ && true diff --git a/src/version.h b/src/version.h index 84a352b9..85ba3b19 100644 --- a/src/version.h +++ b/src/version.h @@ -1,8 +1,8 @@ #define UPX_VERSION_HEX 0x040002 /* 04.00.02 */ #define UPX_VERSION_STRING "4.0.2" #define UPX_VERSION_STRING4 "4.02" -#define UPX_VERSION_DATE "Jan 29th 2023" -#define UPX_VERSION_DATE_ISO "2023-01-29" +#define UPX_VERSION_DATE "Jan 30th 2023" +#define UPX_VERSION_DATE_ISO "2023-01-30" #define UPX_VERSION_YEAR "2023" /* vim:set ts=4 sw=4 et: */