Mark code as official release

This commit is contained in:
Lukas Dürrenberger 2024-12-20 10:41:37 +01:00 committed by Lukas Dürrenberger
parent 6b9f3e36c2
commit 7f1162dfea
3 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ sfml_set_option(CMAKE_OSX_DEPLOYMENT_TARGET "13.0" STRING "The minimal iOS versi
# project name # project name
project(SFML VERSION 3.0.0) project(SFML VERSION 3.0.0)
set(VERSION_IS_RELEASE OFF) set(VERSION_IS_RELEASE ON)
# include the configuration file # include the configuration file
include(cmake/Config.cmake) include(cmake/Config.cmake)

View File

@ -1,6 +1,6 @@
# Changelog # Changelog
## Unreleased SFML 3.0.0 ## SFML 3.0.0
For a closer look at breaking changes and how to migrate from SFML 2, check out the [migration guide](migration.md). For a closer look at breaking changes and how to migrate from SFML 2, check out the [migration guide](migration.md).

View File

@ -31,7 +31,7 @@
#define SFML_VERSION_MAJOR 3 #define SFML_VERSION_MAJOR 3
#define SFML_VERSION_MINOR 0 #define SFML_VERSION_MINOR 0
#define SFML_VERSION_PATCH 0 #define SFML_VERSION_PATCH 0
#define SFML_VERSION_IS_RELEASE false #define SFML_VERSION_IS_RELEASE true
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////