diff --git a/CHANGES.txt b/CHANGES.txt index 467c8fb529..ec6a0e69db 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,10 +1,22 @@ -------------------- - 5.0-beta5 + 5.0-beta6 -------------------- 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-beta5: +* PR #2405 Use git to retrieve version instead of manually change `PREMAKE_VERSION`. (@Jarod42) +* PR #2432 Usages and Uses API (@nickclark2016) +* PR #2438 Added more documentation for usages and uses (@nickclark2016) +* PR #2440 Add documentation specifying that filters are space sensitive (@nickclark2016) +* PR #2442 Fix findlib and findheader on windows (@Jarod42) +* PR #2443 nuget python package error fix (@hanagasira) +* PR #2446 Added Instrumented Profiling Support (@nickclark2016) +* PR #2449 [bugfix] Fix crash with invalid argument type passed to `os.locate` (@Jarod42) +* PR #2450 [contrib][premake] Add missing `"library/*.h"` in `files` in contrib/mbedtls/premake5.lua (@Jarod42) +* PR #2452 Update python version for requirements, upgrade jinja (@nickclark2016) + Since 5.0-beta4: * PR #2401 [gmake] Add missing dependencies between prelink and generated files (@Jarod42) * PR #2403 fix typo in xcode projects generator (@artamonovoleg) diff --git a/README.md b/README.md index b9a2e405d5..ab29958b30 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

Latest release Release date - Commits + Commits BSD 3-Clause diff --git a/src/host/premake.h b/src/host/premake.h index 319f8ba048..44e29d11f7 100644 --- a/src/host/premake.h +++ b/src/host/premake.h @@ -19,7 +19,7 @@ #include #ifndef PREMAKE_VERSION -# define PREMAKE_VERSION "5.0.0-dev" +# define PREMAKE_VERSION "5.0.0-beta6" #endif #define PREMAKE_COPYRIGHT "Copyright (C) 2002-2025 Jess Perkins and the Premake Project" diff --git a/website/src/pages/download.js b/website/src/pages/download.js index 969bce8a8f..ae5330a260 100644 --- a/website/src/pages/download.js +++ b/website/src/pages/download.js @@ -6,7 +6,7 @@ import { Column, Container, Row } from '../components/Grid'; import Sponsors from '../components/Sponsors'; -const LATEST_VERSION = '5.0.0-beta5'; +const LATEST_VERSION = '5.0.0-beta6'; const DownloadLink = ({ arch }) => {