From 6ebd7e123908315b2804267463796b268ad643d1 Mon Sep 17 00:00:00 2001 From: Jason Perkins Date: Fri, 19 Feb 2016 16:19:49 -0500 Subject: [PATCH 1/2] Prep for 5.0-alpha8 release --- CHANGES.txt | 18 ++++++++++++++++++ src/host/premake.c | 4 ++-- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 67fa2300..1d787b0a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -5,6 +5,24 @@ See https://github.com/premake/premake-core/wiki/What's-New-in-5.0 for the complete list of changes from the Premake 4.x series. +Since 5.0-alpha7: + +* New API: characterset() +* New API: editorintegration() +* New API: largeaddressaware() +* New: Visual Studio projects now default to Unicode +* New: Utility and Makefile project support for GMake exporter +* New: Updated Curl to 7.45.0 +* Fix: Absolute path handling and error reporting in tokens +* Fix: Limit use of TargetMachine to static resource library projects +* Fix: Embed minified scripts by default, rather than bytecode +* Fix: os.isfile() now detects Windows symbolic links +* Fix: Correct handling of DOS environment variables in paths +* Fix: Buffer overflow in buffered writes of large strings +* Fix: Improved handling of absolute vs. relative path tokens +* Fix: --cc command line option works again (stream009) +* Fix: Use relative paths for PCH in Makefiles (stream009) + Since 5.0-alpha6: * New API: additionalusingdirectories() diff --git a/src/host/premake.c b/src/host/premake.c index 208be6a6..69358365 100644 --- a/src/host/premake.c +++ b/src/host/premake.c @@ -14,8 +14,8 @@ #endif -#define VERSION "5.0.0-dev" -#define COPYRIGHT "Copyright (C) 2002-2015 Jason Perkins and the Premake Project" +#define VERSION "5.0.0-alpha8" +#define COPYRIGHT "Copyright (C) 2002-2016 Jason Perkins and the Premake Project" #define PROJECT_URL "https://github.com/premake/premake-core/wiki" #define ERROR_MESSAGE "Error: %s\n" From b3d59764611ebd5efa74b25443e2fd71720e6e06 Mon Sep 17 00:00:00 2001 From: Jason Perkins Date: Tue, 23 Feb 2016 15:49:29 -0500 Subject: [PATCH 2/2] Switch back to a dev version number --- src/host/premake.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/host/premake.c b/src/host/premake.c index 69358365..bcb161c5 100644 --- a/src/host/premake.c +++ b/src/host/premake.c @@ -14,7 +14,7 @@ #endif -#define VERSION "5.0.0-alpha8" +#define VERSION "5.0.0-dev" #define COPYRIGHT "Copyright (C) 2002-2016 Jason Perkins and the Premake Project" #define PROJECT_URL "https://github.com/premake/premake-core/wiki" #define ERROR_MESSAGE "Error: %s\n"