diff --git a/changelog.rst b/changelog.rst index 0e8c4f3..f11d190 100644 --- a/changelog.rst +++ b/changelog.rst @@ -1,11 +1,12 @@ -NightFox's Lib Ver. DEV ------------------------ +NightFox's Lib Ver. 1.1.9 +------------------------- - 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 of NFLib will probably need changes to work with current devkitARM. - In all scripts to convert assets, check if the environment variable ``BLOCKSDS`` is set, which overrides the default path. +- Build library with debug symbols to help debug applications that use it. NightFox's Lib Ver. 1.1.8 ------------------------- diff --git a/include/nf_lib.h b/include/nf_lib.h index 2859d1b..701a5ee 100644 --- a/include/nf_lib.h +++ b/include/nf_lib.h @@ -33,13 +33,13 @@ extern "C" { /// Minor version of NightFox's Lib #define NF_LIB_MINOR (1) /// Patch version of NightFox's Lib -#define NF_LIB_PATCH (8) +#define NF_LIB_PATCH (9) /// Full version of NightFox's Lib #define NF_LIB_VERSION ((NF_LIB_MAJOR << 16) | (NF_LIB_MINOR << 8) | (NF_LIB_PATCH)) /// String with the version of NightFox's Lib -#define NF_LIB_VERSION_STRING "1.1.8" +#define NF_LIB_VERSION_STRING "1.1.9" #endif // NF_LIB_H__