From b9a24ef9d5fc52bd3323d7556976011250829569 Mon Sep 17 00:00:00 2001 From: Dave Murphy Date: Sun, 16 Apr 2023 19:24:35 +0100 Subject: [PATCH] wut 1.3.0 --- CHANGELOG.md | 20 ++++++++++++++++++++ Makefile | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 113e95378..fb743d8e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +#### wut 1.3.0 + +###### Important changes + +- newlib syscalls refactored for latest devkitPPC + +###### CafeOS related changes + +coreinit: + +- Fix OSDynLoad_Error to be a 32bit value by @Maschell in https://github.com/devkitPro/wut/pull/305 +- Fix OSDynLoad_EntryReason values by @exzap in https://github.com/devkitPro/wut/pull/307 +- Add MCP_CompatLoadAVFile by @GaryOderNichts in https://github.com/devkitPro/wut/pull/309 +- Add KernelInfo0/KernelInfo6 structs by @Maschell in https://github.com/devkitPro/wut/pull/310 +- MCP_GetSystemVersion by @GaryOderNichts in https://github.com/devkitPro/wut/pull/311 +- Separate vpadbase from vpad by @GaryOderNichts in https://github.com/devkitPro/wut/pull/312 +- Add missing MCP functions/enums & add more fields to LaunchInfo struct by @Maschell in https://github.com/devkitPro/wut/pull/313 + + + #### wut 1.2.0 ###### Important changes diff --git a/Makefile b/Makefile index a724dc97d..9f0427611 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ TOPDIR ?= $(CURDIR) include $(TOPDIR)/share/wut_rules export WUT_MAJOR := 1 -export WUT_MINOR := 2 +export WUT_MINOR := 3 export WUT_PATCH := 0 VERSION := $(WUT_MAJOR).$(WUT_MINOR).$(WUT_PATCH)