Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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)
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-beta5.svg" alt="Commits" />
<img src="https://img.shields.io/github/commits-since/premake/premake-core/v5.0.0-beta6.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
2 changes: 1 addition & 1 deletion src/host/premake.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <stdlib.h>

#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"
Expand Down
2 changes: 1 addition & 1 deletion website/src/pages/download.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }) => {
Expand Down