docs: library: Update changelog and version number to 0.15.3

This commit is contained in:
Antonio Niño Díaz 2025-03-26 18:08:47 +00:00
parent f6b0200be3
commit 926bb4f361
3 changed files with 6 additions and 5 deletions

View File

@ -1,8 +1,8 @@
Changelog
=========
Version DEV (2025-XX-XX)
------------------------
Version 0.15.3 (2025-03-26)
---------------------------
- The devkitARM makefiles have been removed as they only work with old versions
of devkitARM, which aren't supported by its maintainers. The code and examples
@ -11,6 +11,7 @@ Version DEV (2025-XX-XX)
format was changed.
- The build scripts for assets have been modified to use the value of the
environment variables ``BLOCKSDS`` and ``BLOCKSDSEXT`` if they are found.
- Build library with debug symbols to help debug applications that use it.
Version 0.15.2 (2025-01-15)
---------------------------

View File

@ -48,7 +48,7 @@ PROJECT_NAME = "Nitro Engine"
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 0.15.2
PROJECT_NUMBER = 0.15.3
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a

View File

@ -52,7 +52,7 @@ extern "C" {
/// Minor version of Nitro Engine
#define NITRO_ENGINE_MINOR (15)
/// Patch version of Nitro Engine
#define NITRO_ENGINE_PATCH (2)
#define NITRO_ENGINE_PATCH (3)
/// Full version of Nitro Engine
#define NITRO_ENGINE_VERSION ((NITRO_ENGINE_MAJOR << 16) | \
@ -60,7 +60,7 @@ extern "C" {
(NITRO_ENGINE_PATCH))
/// String with the version of Nitro Engine
#define NITRO_ENGINE_VERSION_STRING "0.15.2"
#define NITRO_ENGINE_VERSION_STRING "0.15.3"
/// @}