Update support files and bump version to alpha10

This commit is contained in:
Jason Perkins 2016-10-04 18:18:00 -04:00
parent 98fa40dad3
commit f7ad169c70
4 changed files with 14 additions and 2 deletions

View File

@ -5,6 +5,14 @@
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-alpha9:
* New: `symbols()`, replaces and extends flags {"Symbols"}
* New: `symbolspath()` to specify location of symbol database
* New: `table.shallowcopy()`
* New: `vectorextensions` value "IA32"
* Fix: --start-group/--end-group now only enclose project libraries
Since 5.0-alpha8:
* New: `buildcustomizations()` imports custom .props files for VS

View File

@ -23,6 +23,8 @@ Patch contributors:
Damien Courtois <https://github.com/dcourtois>
* module loading fixes
* bug fixes
David Ely <https://github.com/megaeels>
* symbols() API and flag deprecation
Gabi Davar <gabi.davar@discretix.com>
* added file.directory to token environment
João Matos (joao@tritao.eu)
@ -37,6 +39,8 @@ Patch contributors:
* path.join() fixes
Mark Chandler <https://bitbucket.org/mchandler_blizzard>
* prevent self-linking
Matthew Endsley <https://github.com/mendsley>
* File matching improvements
Mark Sararu <mark.sararu@gmail.com>
* Makefile bug fixes
Mihai Sebea <http://twitter.com/mihai_sebea>

View File

@ -9,7 +9,7 @@ PREP
* Update CHANGES.txt and CONTRIBUTORS.txt
* Update version in src/host/premake.c and commit
* Update version in src/host/premake.h and commit
* Push release branch to GitHub; wait for CI to pass

View File

@ -9,7 +9,7 @@
#include "lauxlib.h"
#include "lualib.h"
#define PREMAKE_VERSION "5.0.0-dev"
#define PREMAKE_VERSION "5.0.0-alpha10"
#define PREMAKE_COPYRIGHT "Copyright (C) 2002-2016 Jason Perkins and the Premake Project"
#define PREMAKE_PROJECT_URL "https://github.com/premake/premake-core/wiki"