1
0
mirror of https://github.com/upx/upx synced 2025-09-28 19:06:07 +08:00

all: post-release version bump

This commit is contained in:
Markus F.X.J. Oberhumer 2023-11-01 15:07:18 +01:00
parent d14fa5f8a4
commit ceb2b56b71
4 changed files with 10 additions and 7 deletions

View File

@ -155,7 +155,7 @@ if(NOT is_multi_config AND NOT CMAKE_BUILD_TYPE)
endif() endif()
# CMake init # CMake init
project(upx VERSION 4.2.1 LANGUAGES C CXX) project(upx VERSION 4.3.0 LANGUAGES C CXX)
# set the default multi-config build type to "Release" # set the default multi-config build type to "Release"
if(is_multi_config) if(is_multi_config)

3
NEWS
View File

@ -2,6 +2,9 @@
User visible changes for UPX User visible changes for UPX
================================================================== ==================================================================
Changes in 4.3.0 (XX XXX XXXX):
* bug fixes - see https://github.com/upx/upx/milestone/15
Changes in 4.2.1 (01 Nov 2023): Changes in 4.2.1 (01 Nov 2023):
* linux: /proc/self/exe now is optional * linux: /proc/self/exe now is optional
* windows: use SetFileTime to preserve sub-second file timestamps * windows: use SetFileTime to preserve sub-second file timestamps

2
doc/upx.1 generated
View File

@ -133,7 +133,7 @@
.\" ======================================================================== .\" ========================================================================
.\" .\"
.IX Title "UPX 1" .IX Title "UPX 1"
.TH UPX 1 "2023-11-01" "upx 4.2.1" " " .TH UPX 1 "2023-11-02" "upx 4.3.0" " "
.\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents. .\" way too many mistakes in technical documents.
.if n .ad l .if n .ad l

View File

@ -1,7 +1,7 @@
#pragma once #pragma once
#define UPX_VERSION_HEX 0x040201 /* 04.02.01 */ #define UPX_VERSION_HEX 0x040300 /* 04.03.00 */
#define UPX_VERSION_STRING "4.2.1" #define UPX_VERSION_STRING "4.3.0"
#define UPX_VERSION_STRING4 "4.21" #define UPX_VERSION_STRING4 "4.30"
#define UPX_VERSION_DATE "Nov 1st 2023" #define UPX_VERSION_DATE "Nov 2nd 2023"
#define UPX_VERSION_DATE_ISO "2023-11-01" #define UPX_VERSION_DATE_ISO "2023-11-02"
#define UPX_VERSION_YEAR "2023" #define UPX_VERSION_YEAR "2023"