diff --git a/Changelog.md b/Changelog.md index 79486a884..b5fb629c4 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,13 @@ # Changelog +## Version 2.0.1 + +- Added CFG_SystemModel enum. +- Fixed bug in condvar code. +- Fixed bug in srvpm code. +- Fixed const correctness issues in gspgpu code. +- Further improvements to overall system stability and other minor adjustments have been made to enhance the user experience. + ## Version 2.0.0 **This is a major release. Many essential components have been overhauled, although breaking changes are minimal and only affect rarely used functionality.** diff --git a/libctru/Makefile b/libctru/Makefile index 4cd5353cb..7c54c7812 100644 --- a/libctru/Makefile +++ b/libctru/Makefile @@ -10,7 +10,7 @@ include $(DEVKITARM)/base_rules export LIBCTRU_MAJOR := 2 export LIBCTRU_MINOR := 0 -export LIBCTRU_PATCH := 0 +export LIBCTRU_PATCH := 1 VERSION := $(LIBCTRU_MAJOR).$(LIBCTRU_MINOR).$(LIBCTRU_PATCH)