diff --git a/Changelog.md b/Changelog.md index 8c5c98a..d1fd25d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,12 @@ # Changelog +## Version 2.1.1 + +- FPSCR is now initialized with a predictable value in all threads (including the main thread). +- Added gspGetSessionHandle and gspLcdGetSessionHandle. +- Fixed bugs related to uninitialized data in srv/errf service wrappers. +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + ## Version 2.1.0 **The #define for the 3DS platform has been changed to `__3DS__` (previously it was `_3DS`) - please update your Makefiles and your code** diff --git a/libctru/Makefile b/libctru/Makefile index 0ac1d7e..be396bc 100644 --- a/libctru/Makefile +++ b/libctru/Makefile @@ -10,7 +10,7 @@ include $(DEVKITARM)/base_rules export LIBCTRU_MAJOR := 2 export LIBCTRU_MINOR := 1 -export LIBCTRU_PATCH := 0 +export LIBCTRU_PATCH := 1 VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH)