Skip to content

Commit

Permalink
docs: library: Update changelog and library version to 0.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioND committed Jan 15, 2025
1 parent fff1a65 commit b67c60d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

Version 0.15.2 (2025-01-15)
---------------------------

- Fix `ar` binary used to build the library.
- Update documentation.
- Fix build of examples in devkitARM.
- Improve setup instructions.

Version 0.15.1 (2024-12-23)
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion documentation/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.1
PROJECT_NUMBER = 0.15.2

# 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
Expand Down
4 changes: 2 additions & 2 deletions include/NEMain.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,15 @@ extern "C" {
/// Minor version of Nitro Engine
#define NITRO_ENGINE_MINOR (15)
/// Patch version of Nitro Engine
#define NITRO_ENGINE_PATCH (1)
#define NITRO_ENGINE_PATCH (2)

/// Full version of Nitro Engine
#define NITRO_ENGINE_VERSION ((NITRO_ENGINE_MAJOR << 16) | \
(NITRO_ENGINE_MINOR << 8) | \
(NITRO_ENGINE_PATCH))

/// String with the version of Nitro Engine
#define NITRO_ENGINE_VERSION_STRING "0.15.0"
#define NITRO_ENGINE_VERSION_STRING "0.15.2"

/// @}

Expand Down

0 comments on commit b67c60d

Please sign in to comment.