Skip to content

Commit a8ae667

Browse files
committed
wut v1.1.1
1 parent 733d500 commit a8ae667

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
#### wut 1.1.1
2+
###### Important changes
3+
- Changed license to zlib to avoiding licensing issues when linking against wut in non-GPL projects. (#257)
4+
5+
###### Important bug fixes
6+
- Fixed stack alignment to match PPC EABI requirements and avoid undefined behaviour (#248)
7+
- Fixed lseek implementation which caused undefined behaviour on SEEK_CUR (#253)
8+
- Added fix to prevent file-offset overflow in seek implementation (#254)
9+
- Fixed lseek implementation to work correctly on files opend with O_APPEND (#256)
10+
- Fixed and improved usage of atomics (#258)
11+
12+
###### New features
13+
- Added a trapword to the crt in case a debugger is initalized to allow debugging .rpx compiled with wut (#249)
14+
- 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)
15+
16+
###### CafeOS related changes
17+
- Fixed invalid ACPInitialize function declaration (#247)
18+
- Fixed order of arguments for FSOpenFileExAsync (#260)
19+
20+
Thanks to @exjam, @fincs, @GaryOderNichts and @Maschell for their contributions to this release.
21+
122
#### wut 1.1.0
223
###### Important bug fixes
324
- Added wut_load_bounds section to prevent loader bug (thanks @GaryOderNichts)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ include $(TOPDIR)/share/wut_rules
44

55
export WUT_MAJOR := 1
66
export WUT_MINOR := 1
7-
export WUT_PATCH := 0
7+
export WUT_PATCH := 1
88

99
VERSION := $(WUT_MAJOR).$(WUT_MINOR).$(WUT_PATCH)
1010

docs/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ if(DOXYGEN_FOUND)
66
set(DOXYGEN_OUT ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile)
77

88
set(DOXYGEN_PROJECT_NAME "wut")
9-
set(DOXYGEN_PROJECT_NUMBER "1.1.0")
9+
set(DOXYGEN_PROJECT_NUMBER "1.1.1")
1010
set(DOXYGEN_PROJECT_BRIEF "Wii U Toolchain")
1111

1212
set(DOXYGEN_GENERATE_HTML YES)

0 commit comments

Comments
 (0)