diff --git a/CMakeLists.txt b/CMakeLists.txt index d20776ef7..8a11523eb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ sfml_set_option(CMAKE_OSX_DEPLOYMENT_TARGET "13.0" STRING "The minimal iOS versi # project name project(SFML VERSION 3.0.0) -set(VERSION_IS_RELEASE OFF) +set(VERSION_IS_RELEASE ON) # include the configuration file include(cmake/Config.cmake) diff --git a/changelog.md b/changelog.md index ad9f9221d..66eb6d389 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,6 @@ # 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). diff --git a/include/SFML/Config.hpp b/include/SFML/Config.hpp index 4714d1a0d..66020ee35 100644 --- a/include/SFML/Config.hpp +++ b/include/SFML/Config.hpp @@ -31,7 +31,7 @@ #define SFML_VERSION_MAJOR 3 #define SFML_VERSION_MINOR 0 #define SFML_VERSION_PATCH 0 -#define SFML_VERSION_IS_RELEASE false +#define SFML_VERSION_IS_RELEASE true ////////////////////////////////////////////////////////////