diff --git a/CHANGELOG.md b/CHANGELOG.md index 93cf946a7..a2b60b223 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +#### wut 1.1.1 +###### Important changes +- Changed license to zlib to avoiding licensing issues when linking against wut in non-GPL projects. (#257) + +###### Important bug fixes +- Fixed stack alignment to match PPC EABI requirements and avoid undefined behaviour (#248) +- Fixed lseek implementation which caused undefined behaviour on SEEK_CUR (#253) +- Added fix to prevent file-offset overflow in seek implementation (#254) +- Fixed lseek implementation to work correctly on files opend with O_APPEND (#256) +- Fixed and improved usage of atomics (#258) + +###### New features +- Added a trapword to the crt in case a debugger is initalized to allow debugging .rpx compiled with wut (#249) +- Added support for the O_EXCL fopen flag and the following flag combinations: `O_WRONLY | O_CREAT`, `O_WRONLY | O_APPEND` and `O_WRONLY | O_TRUNC` (#250) + +###### CafeOS related changes +- Fixed invalid ACPInitialize function declaration (#247) +- Fixed order of arguments for FSOpenFileExAsync (#260) + +Thanks to @exjam, @fincs, @GaryOderNichts and @Maschell for their contributions to this release. + #### wut 1.1.0 ###### Important bug fixes - Added wut_load_bounds section to prevent loader bug (thanks @GaryOderNichts) diff --git a/Makefile b/Makefile index 0bce968b1..642d5c789 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/share/wut_rules export WUT_MAJOR := 1 export WUT_MINOR := 1 -export WUT_PATCH := 0 +export WUT_PATCH := 1 VERSION := $(WUT_MAJOR).$(WUT_MINOR).$(WUT_PATCH) diff --git a/docs/CMakeLists.txt b/docs/CMakeLists.txt index 309070cfe..d58d41b14 100644 --- a/docs/CMakeLists.txt +++ b/docs/CMakeLists.txt @@ -6,7 +6,7 @@ if(DOXYGEN_FOUND) set(DOXYGEN_OUT ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile) set(DOXYGEN_PROJECT_NAME "wut") - set(DOXYGEN_PROJECT_NUMBER "1.1.0") + set(DOXYGEN_PROJECT_NUMBER "1.1.1") set(DOXYGEN_PROJECT_BRIEF "Wii U Toolchain") set(DOXYGEN_GENERATE_HTML YES)