Skip to content

Commit 39dda52

Browse files
committed
Release prep for 5.0.0-beta6
1 parent e3a8bdf commit 39dda52

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGES.txt

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,22 @@
11
--------------------
2-
5.0-beta5
2+
5.0-beta6
33
--------------------
44

55
See https://github.com/premake/premake-core/wiki/What's-New-in-5.0
66
for the complete list of changes from the Premake 4.x series.
77

8+
Since 5.0-beta5:
9+
* PR #2405 Use git to retrieve version instead of manually change `PREMAKE_VERSION`. (@Jarod42)
10+
* PR #2432 Usages and Uses API (@nickclark2016)
11+
* PR #2438 Added more documentation for usages and uses (@nickclark2016)
12+
* PR #2440 Add documentation specifying that filters are space sensitive (@nickclark2016)
13+
* PR #2442 Fix findlib and findheader on windows (@Jarod42)
14+
* PR #2443 nuget python package error fix (@hanagasira)
15+
* PR #2446 Added Instrumented Profiling Support (@nickclark2016)
16+
* PR #2449 [bugfix] Fix crash with invalid argument type passed to `os.locate` (@Jarod42)
17+
* PR #2450 [contrib][premake] Add missing `"library/*.h"` in `files` in contrib/mbedtls/premake5.lua (@Jarod42)
18+
* PR #2452 Update python version for requirements, upgrade jinja (@nickclark2016)
19+
820
Since 5.0-beta4:
921
* PR #2401 [gmake] Add missing dependencies between prelink and generated files (@Jarod42)
1022
* PR #2403 fix typo in xcode projects generator (@artamonovoleg)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<p align="center">
66
<img src="https://img.shields.io/github/release/premake/premake-core/all.svg" alt="Latest release" />
77
<img src="https://img.shields.io/github/release-date-pre/premake/premake-core.svg" alt="Release date" />
8-
<img src="https://img.shields.io/github/commits-since/premake/premake-core/v5.0.0-beta5.svg" alt="Commits" />
8+
<img src="https://img.shields.io/github/commits-since/premake/premake-core/v5.0.0-beta6.svg" alt="Commits" />
99
<a href="https://opensource.org/licenses/BSD-3-Clause" target="_blank">
1010
<img src="https://img.shields.io/github/license/premake/premake-core" alt="BSD 3-Clause" />
1111
</a>

src/host/premake.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#include <stdlib.h>
2020

2121
#ifndef PREMAKE_VERSION
22-
# define PREMAKE_VERSION "5.0.0-dev"
22+
# define PREMAKE_VERSION "5.0.0-beta6"
2323
#endif
2424

2525
#define PREMAKE_COPYRIGHT "Copyright (C) 2002-2025 Jess Perkins and the Premake Project"

website/src/pages/download.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Column, Container, Row } from '../components/Grid';
66
import Sponsors from '../components/Sponsors';
77

88

9-
const LATEST_VERSION = '5.0.0-beta5';
9+
const LATEST_VERSION = '5.0.0-beta6';
1010

1111

1212
const DownloadLink = ({ arch }) => {

0 commit comments

Comments
 (0)