Skip to content

Commit 26823c0

Browse files
committed
docs: library: Update changelog and bump version to 0.14.0
1 parent 5a4824f commit 26823c0

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

changelog.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
Version 0.14.0 (2024-09-10)
5+
---------------------------
6+
7+
- Use ``stdint.h`` types instead of libnds types.
8+
- Update BlocksDS makefiles.
9+
- Update libdsf to v0.1.3.
10+
- Fix some memory leaks/use-after-free bugs in the RichText module.
11+
412
Version 0.13.0 (2024-06-08)
513
---------------------------
614

include/NEMain.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ extern "C" {
5050
/// Major version of Nitro Engine
5151
#define NITRO_ENGINE_MAJOR (0)
5252
/// Minor version of Nitro Engine
53-
#define NITRO_ENGINE_MINOR (11)
53+
#define NITRO_ENGINE_MINOR (14)
5454
/// Patch version of Nitro Engine
5555
#define NITRO_ENGINE_PATCH (0)
5656

@@ -60,7 +60,7 @@ extern "C" {
6060
(NITRO_ENGINE_PATCH))
6161

6262
/// String with the version of Nitro Engine
63-
#define NITRO_ENGINE_VERSION_STRING "0.11.0"
63+
#define NITRO_ENGINE_VERSION_STRING "0.14.0"
6464

6565
/// @}
6666

0 commit comments

Comments
 (0)