diff --git a/NEWS b/NEWS index a49000d4..3aced358 100644 --- a/NEWS +++ b/NEWS @@ -2,13 +2,14 @@ User visible changes for UPX ================================================================== -Changes in 3.95 (XX XXX 2017): +Changes in 3.95 (26 Aug 2018): * UPX has moved to GitHub - the new home page is https://upx.github.io * Flag --android-shlib to work around bad design in Android * Flag --force-pie when ET_DYN main program is not marked as DF_1_PIE * Better compatibility with varying layout of address space on Linux * Support for 4 PT_LOAD layout in ELF generated by binutils-2.31 * bug fixes, particularly better diagnosis of malformed input + * bug fixes - see https://github.com/upx/upx/milestone/4 Changes in 3.94 (12 May 2017): * Add support for arm64-linux (aka "aarch64"). diff --git a/src/version.h b/src/version.h index b1448b08..725e5d88 100644 --- a/src/version.h +++ b/src/version.h @@ -1,8 +1,8 @@ #define UPX_VERSION_HEX 0x035f00 /* 03.95.00 */ #define UPX_VERSION_STRING "3.95" #define UPX_VERSION_STRING4 "3.95" -#define UPX_VERSION_DATE "May 13th 2017" -#define UPX_VERSION_DATE_ISO "2017-05-12" -#define UPX_VERSION_YEAR "2017" +#define UPX_VERSION_DATE "Aug 26th 2018" +#define UPX_VERSION_DATE_ISO "2018-08-26" +#define UPX_VERSION_YEAR "2018" /* vim:set ts=4 sw=4 et: */