Skip to content

Commit 99eaf72

Browse files
committed
Merge branch 'master' of https://github.com/raysan5/raylib
2 parents 1339ec6 + 44e5126 commit 99eaf72

10 files changed

Lines changed: 18 additions & 18 deletions

File tree

BINDINGS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Some people ported raylib to other languages in the form of bindings or wrappers
66

77
| Name | raylib Version | Language | License |
88
| :--------------------------------------------------------------------------------------- | :--------------: | :------------------------------------------------------------------: | :------------------: |
9-
| [raylib](https://github.com/raysan5/raylib) | **5.5** | [C/C++](https://en.wikipedia.org/wiki/C_(programming_language)) | Zlib |
9+
| [raylib](https://github.com/raysan5/raylib) | **6.0** | [C/C++](https://en.wikipedia.org/wiki/C_(programming_language)) | Zlib |
1010
| [raylib-ada](https://github.com/Fabien-Chouteau/raylib-ada) | **5.5** | [Ada](https://en.wikipedia.org/wiki/Ada_(programming_language)) | MIT |
1111
| [raylib-beef](https://github.com/Starpelly/raylib-beef) | **5.5** | [Beef](https://www.beeflang.org) | MIT |
1212
| [raybit](https://github.com/Alex-Velez/raybit) | **5.0** | [Brainfuck](https://en.wikipedia.org/wiki/Brainfuck) | MIT |

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
changelog
22
---------
33

4-
Current Release: raylib 5.5 (18 November 2024)
4+
Current Release: raylib 6.0 (23 April 2026)
55

66
-------------------------------------------------------------------------
77
Release: raylib 6.0 (23 April 2026)

examples/Makefile.Android

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# raylib makefile for Android project (APK building)
44
#
5-
# Copyright (c) 2017-2025 Ramon Santamaria (@raysan5)
5+
# Copyright (c) 2017-2026 Ramon Santamaria (@raysan5)
66
#
77
# This software is provided "as-is", without any express or implied warranty. In no event
88
# will the authors be held liable for any damages arising from the use of this software.

examples/examples.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
GLFW_ICON ICON "raylib.ico"
22

33
1 VERSIONINFO
4-
FILEVERSION 5,5,0,0
5-
PRODUCTVERSION 5,5,0,0
4+
FILEVERSION 6,0,0,0
5+
PRODUCTVERSION 6,0,0,0
66
BEGIN
77
BLOCK "StringFileInfo"
88
BEGIN
@@ -11,12 +11,12 @@ BEGIN
1111
BEGIN
1212
VALUE "CompanyName", "raylib technologies"
1313
VALUE "FileDescription", "raylib application (www.raylib.com)"
14-
VALUE "FileVersion", "5.5.0"
14+
VALUE "FileVersion", "6.0.0"
1515
VALUE "InternalName", "raylib-example"
16-
VALUE "LegalCopyright", "(c) 2025 Ramon Santamaria (@raysan5)"
16+
VALUE "LegalCopyright", "(c) 2026 Ramon Santamaria (@raysan5)"
1717
VALUE "OriginalFilename", "raylib-example"
1818
VALUE "ProductName", "raylib-example"
19-
VALUE "ProductVersion", "5.5.0"
19+
VALUE "ProductVersion", "6.0.0"
2020
END
2121
END
2222
BLOCK "VarFileInfo"

projects/CMake/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ project(example)
55
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
66

77
# Dependencies
8-
set(RAYLIB_VERSION 5.5)
8+
set(RAYLIB_VERSION 6.0)
99
find_package(raylib ${RAYLIB_VERSION} QUIET) # QUIET or REQUIRED
1010
if (NOT raylib_FOUND) # If there's none, fetch and build raylib
1111
include(FetchContent)

tools/rexm/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2025 Ramon Santamaria (@raysan5)
1+
Copyright (c) 2026 Ramon Santamaria (@raysan5)
22

33
This software is provided "as-is", without any express or implied warranty. In no event
44
will the authors be held liable for any damages arising from the use of this software.

tools/rexm/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# raylib makefile for Desktop platforms, Web (Wasm), Raspberry Pi (DRM mode) and Android
44
#
5-
# Copyright (c) 2013-2025 Ramon Santamaria (@raysan5)
5+
# Copyright (c) 2013-2026 Ramon Santamaria (@raysan5)
66
#
77
# This software is provided "as-is", without any express or implied warranty. In no event
88
# will the authors be held liable for any damages arising from the use of this software.

tools/rexm/rexm.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -474,8 +474,8 @@ int main(int argc, char *argv[])
474474
exTextUpdated[1] = TextReplaceAlloc(exTextUpdated[0], "<name>", exName + strlen(exCategory) + 1);
475475
//TextReplaceAlloc(newExample, "<user_name>", "Ray");
476476
//TextReplaceAlloc(newExample, "@<user_github>", "@raysan5");
477-
//TextReplaceAlloc(newExample, "<year_created>", 2025);
478-
//TextReplaceAlloc(newExample, "<year_updated>", 2025);
477+
//TextReplaceAlloc(newExample, "<year_created>", 2026);
478+
//TextReplaceAlloc(newExample, "<year_updated>", 2026);
479479

480480
SaveFileText(TextFormat("%s/%s/%s.c", exBasePath, exCategory, exName), exTextUpdated[1]);
481481
for (int i = 0; i < 6; i++) { MemFree(exTextUpdated[i]); exTextUpdated[i] = NULL; }
@@ -1875,7 +1875,7 @@ int main(int argc, char *argv[])
18751875
printf("\n////////////////////////////////////////////////////////////////////////////////////////////\n");
18761876
printf("// //\n");
18771877
printf("// rexm [raylib examples manager] - A simple command-line tool to manage raylib examples //\n");
1878-
printf("// powered by raylib v5.6-dev //\n");
1878+
printf("// powered by raylib v6.0 //\n");
18791879
printf("// //\n");
18801880
printf("// Copyright (c) 2025-2026 Ramon Santamaria (@raysan5) //\n");
18811881
printf("// //\n");

tools/rexm/rexm.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ BEGIN
1313
VALUE "FileDescription", "rexm | raylib examples manager"
1414
VALUE "FileVersion", "1.0"
1515
VALUE "InternalName", "rexm"
16-
VALUE "LegalCopyright", "(c) 2025 Ramon Santamaria"
16+
VALUE "LegalCopyright", "(c) 2026 Ramon Santamaria"
1717
//VALUE "OriginalFilename", "rexm.exe"
1818
VALUE "rexm", "rexm"
1919
VALUE "ProductVersion", "1.0"

tools/rlparser/rlparser.rc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
IDI_APP_ICON ICON "rlparser.ico"
22
1 VERSIONINFO
3-
FILEVERSION 5,5,0,0
4-
PRODUCTVERSION 5,5,0,0
3+
FILEVERSION 6,0,0,0
4+
PRODUCTVERSION 6,0,0,0
55
BEGIN
66
BLOCK "StringFileInfo"
77
BEGIN
@@ -11,7 +11,7 @@ BEGIN
1111
VALUE "FileDescription", "rlparser | raylib header API parser"
1212
VALUE "FileVersion", "1.0"
1313
VALUE "InternalName", "rlparser"
14-
VALUE "LegalCopyright", "(c) 2025 Ramon Santamaria (@raysan5)"
14+
VALUE "LegalCopyright", "(c) 2026 Ramon Santamaria (@raysan5)"
1515
VALUE "OriginalFilename", "rlparser"
1616
VALUE "ProductName", "rlparser"
1717
VALUE "ProductVersion", "1.0"

0 commit comments

Comments
 (0)