diff --git a/Changelog.md b/Changelog.md index a36a443c..1eb24b29 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,26 @@ # Changelog +## Version 4.1.3 + +#### input +* **Removed old deprecated HID API**. + +#### network +* Fixed inet_pton implementation. + +Several issues were fixed, and usability and stability were improved. + +## Version 4.1.2 + +Several issues were fixed, and usability and stability were improved. + +## Version 4.1.1 + +#### system +* Fixed deadlock issue when multi-threaded services (e.g. filesystem, sockets) are starved of free sessions. + +Several issues were fixed, and usability and stability were improved. + ## Version 4.1.0 #### system diff --git a/nx/Makefile b/nx/Makefile index be75aaef..08dbee67 100644 --- a/nx/Makefile +++ b/nx/Makefile @@ -10,7 +10,7 @@ include $(DEVKITPRO)/devkitA64/base_rules export LIBNX_MAJOR := 4 export LIBNX_MINOR := 1 -export LIBNX_PATCH := 0 +export LIBNX_PATCH := 3 VERSION := $(LIBNX_MAJOR).$(LIBNX_MINOR).$(LIBNX_PATCH)