Skip to content

Commit b9ca81a

Browse files
Prepare changes for 5.0.0-beta5 (#2430)
1 parent 801e6a0 commit b9ca81a

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

CHANGES.txt

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,23 @@
11
--------------------
2-
5.0-beta4
2+
5.0-beta5
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-beta4:
9+
* PR #2401 [gmake] Add missing dependencies between prelink and generated files (@Jarod42)
10+
* PR #2403 fix typo in xcode projects generator (@artamonovoleg)
11+
* PR #2404 Rename gmake to gmakelegacy (@nickclark2016)
12+
* PR #2406 Add OmniOS CI job (@LORgames)
13+
* PR #2408 Rename gmake2 to gmake (@nickclark2016)
14+
* PR #2412 Remove deprecated buildrule (@Jarod42)
15+
* PR #2413 Improve some doc (@Jarod42)
16+
* PR #2414 C23 dialect support (@nickclark2016)
17+
* PR #2417 fix warnings function for the xcode4 generator (@artamonovoleg)
18+
* PR #2419 Remove the 'Android' architecture from pre-vs2015 support (@redorav)
19+
* PR #2422 Fix code using gmake2 to properly display warning (@nickclark2016)
20+
821
Since 5.0-beta3:
922

1023
* PR #2327 Removes deprecated language version flags (@nickclark2016)

README.md

+1-1
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-beta4.svg" alt="Commits" />
8+
<img src="https://img.shields.io/github/commits-since/premake/premake-core/v5.0.0-beta5.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
#include <stdint.h>
1919
#include <stdlib.h>
2020

21-
#define PREMAKE_VERSION "5.0.0-dev"
21+
#define PREMAKE_VERSION "5.0.0-beta5"
2222
#define PREMAKE_COPYRIGHT "Copyright (C) 2002-2024 Jess Perkins and the Premake Project"
2323
#define PREMAKE_PROJECT_URL "https://github.com/premake/premake-core/wiki"
2424

website/src/pages/download.js

+1-1
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-beta4';
9+
const LATEST_VERSION = '5.0.0-beta5';
1010

1111

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

0 commit comments

Comments
 (0)