Skip to content

Commit

Permalink
Update support files for 5.0-alpha15 release
Browse files Browse the repository at this point in the history
  • Loading branch information
starkos committed Apr 23, 2020
1 parent 012c341 commit ffa8778
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 3 deletions.
60 changes: 60 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,66 @@
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-alpha14:

* PR #1086 Added support for Objective-C and Objective-C++ in xcode and gmake2nil (@LORgames)
* PR #1192 Update path.lua (@dsvi)
* PR #1229 Generated makefiles no longer error when a configuration can be missing (@LORgames)
* PR #1275 Fixed various issues with escaping in CodeLite generator (@LORgames)
* PR #1280 Bootstrap.bat: Default to latest Visual Studio available (@tdesveauxPKFX)
* PR #1281 Source package improvements (@tdesveauxPKFX)
* PR #1282 Fix VS2019 solution icons (@ifarbod)
* PR #1285 Use correct values for MinimumVisualStudioVersion in Android projects (@ifarbod)
* PR #1289 Haiku fixes (@mmuman)
* PR #1296 Fix source packaging (@tdesveauxPKFX)
* PR #1298 Update D module to VS2019 and latest D compiler options. (@TurkeyMan)
* PR #1305 Reconcile logic within os_matchisfile() (@cfs-pure)
* PR #1313 Activating Open Collective (@opencollective)
* PR #1316 Add FUNDING.yml for GitHub Sponsors (@starkos)
* PR #1318 Updated mismatched android config to the value in the allowed stl table (@LORgames)
* PR #1323 Update copyright year in support files (@starkos)
* PR #1324 Add a CONTRIBUTING.md (@starkos)
* PR #1325 Improve the README (@starkos)
* PR #1326 Update issue templates (@premake)
* PR #1327 Add a pull request template (@premake)
* PR #1332 Account for filename collisions on systems with case-insensitive file… (@ratzlaff)
* PR #1333 Cleanup related to #1332 (@ratzlaff)
* PR #1334 Implement 'compileas' for vc2008 (@ratzlaff)
* PR #1337 On OSX, convert systemversion to MACOSX_DEPLOYMENT_TARGET (@baconpaul)
* PR #1340 Upgrade Lua from 5.3.4 to 5.3.5 (@jp31415926)
* PR #1341 Add new issue template "Get help" (@premake)
* PR #1342 Improve bug reporting template (@premake)
* PR #1343 Improve feature request template (@premake)
* PR #1345 New 'listWindowsRegistry' OS API method for enumerating content of single registry subkey (@kaldap)
* PR #1351 Added support for vcxitems project generation for VS2013+ (@LORgames)
* PR #1352 Improved test runner usage (@LORgames)
* PR #1353 Fix premake4.lua bootstrap build script (@fountainment)
* PR #1355 Add shaderincludedirs to fxcompile configuration (@starkos)
* PR #1356 Allow wildcards in xcodebuildresources (@starkos)
* PR #1357 Replace debuggerflavor with debugger (take #2) (@starkos)
* PR #1358 Added support for Dx11.3 shader model (@zlnimda)
* PR #1359 Add assemblyDebug for vs2017 (@tbasnoopy)
* PR #1360 Fix the return value of some os functions (@sp-jordi-vilalta)
* PR #1361 Simplified unit test to resolve path issues (@LORgames)
* PR #1362 Fixed inconsistencies in Android VS project test (@LORgames)
* PR #1365 E2K: fixed build by MCST lcc compiler (@r-a-sattarov)
* PR #1385 Fix pull request template (@tempura-sukiyaki)
* PR #1386 Initial support for generating netcore and netstandard projects (@ClxS)
* PR #1395 Fixed edge case in path.normalize (@LORgames)
* PR #1396 Fixed bug with linkgroups only working on Premake projects (@LORgames)
* PR #1401 Remove commands optimization which breaks tokens (@starkos)
* PR #1402 Remove checkFunc from Resource files (@yuyoyuppe)
* PR #1403 Add build steps to Visual Studio (@redorav)
* PR #1404 Place all generated files in separate GENERATED list, so they all can… (@Mikhael-Danilov)
* PR #1406 Change deferred join delimiter to non-printable character (@starkos)
* PR #1415 Add .c++ extension support to a few spots it was missing (@englercj)
* PR #1419 Fix #1411: Remove "|" from Codelite config names (@starkos)
* PR #1420 Fix MinGW builds of Premake (@premake)
* PR #1421 Enable enablewarnings() for MSC (@starkos)
* PR #1422 Added GitHub Actions (@LORgames)
* PR #1424 Fix systemversion("latest") on VS2017 (@starkos)
* PR #1427 Fix up and improve the release docs and script (@premake)

Since 5.0-alpha13:

* PR #1067 Add 'Default', 'Dwarf' and 'SplitDwarf' arguments to 'debugformat' (@ratzlaff)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<p align="center">
<img src="https://img.shields.io/github/release/premake/premake-core/all.svg" alt="Latest release" />
<img src="https://img.shields.io/github/release-date-pre/premake/premake-core.svg" alt="Release date" />
<img src="https://img.shields.io/github/commits-since/premake/premake-core/v5.0.0-alpha14.svg" alt="Commits" />
<img src="https://img.shields.io/github/commits-since/premake/premake-core/v5.0.0-alpha15.svg" alt="Commits" />
<a href="https://opensource.org/licenses/BSD-3-Clause" target="_blank">
<img src="https://img.shields.io/github/license/premake/premake-core" alt="BSD 3-Clause" />
</a>
Expand Down
4 changes: 2 additions & 2 deletions src/host/premake.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

#include <stdlib.h>

#define PREMAKE_VERSION "5.0.0-dev"
#define PREMAKE_COPYRIGHT "Copyright (C) 2002-2018 Jason Perkins and the Premake Project"
#define PREMAKE_VERSION "5.0.0-alpha15"
#define PREMAKE_COPYRIGHT "Copyright (C) 2002-2020 Jason Perkins and the Premake Project"
#define PREMAKE_PROJECT_URL "https://github.com/premake/premake-core/wiki"

/* Identify the current platform I'm not sure how to reliably detect
Expand Down

0 comments on commit ffa8778

Please sign in to comment.