From fbf02782a6a06b2679c6d8f62e7f2fad4e1f8459 Mon Sep 17 00:00:00 2001 From: Vincent Wei Date: Mon, 4 Jan 2021 10:34:26 +0800 Subject: [PATCH] change version to 5.0.5 --- Doxyfile.procs | 4 ++-- Doxyfile.sal | 4 ++-- Doxyfile.ths | 4 ++-- RELEASE-NOTES.md | 17 +++++++++++++++++ Version.md | 2 +- configure.ac | 8 ++++---- 6 files changed, 28 insertions(+), 11 deletions(-) diff --git a/Doxyfile.procs b/Doxyfile.procs index 085cd291..473f08c8 100644 --- a/Doxyfile.procs +++ b/Doxyfile.procs @@ -38,7 +38,7 @@ PROJECT_NAME = "MiniGUI API Reference (MiniGUI-Processes)" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v5.0.0 +PROJECT_NUMBER = v5.0.5 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a @@ -58,7 +58,7 @@ PROJECT_LOGO = # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. -OUTPUT_DIRECTORY = doc-api-ref-minigui-procs-5.0.0 +OUTPUT_DIRECTORY = doc-api-ref-minigui-procs-5.0.5 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- # directories (in 2 levels) under the output directory of each output format and diff --git a/Doxyfile.sal b/Doxyfile.sal index d1e6c47a..8c6aa923 100644 --- a/Doxyfile.sal +++ b/Doxyfile.sal @@ -38,7 +38,7 @@ PROJECT_NAME = "MiniGUI API Reference (MiniGUI-Standalone)" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v5.0.0 +PROJECT_NUMBER = v5.0.5 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a @@ -58,7 +58,7 @@ PROJECT_LOGO = # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. -OUTPUT_DIRECTORY = doc-api-ref-minigui-sa-5.0.0 +OUTPUT_DIRECTORY = doc-api-ref-minigui-sa-5.0.5 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- # directories (in 2 levels) under the output directory of each output format and diff --git a/Doxyfile.ths b/Doxyfile.ths index 8d63c41c..0c7328ac 100644 --- a/Doxyfile.ths +++ b/Doxyfile.ths @@ -38,7 +38,7 @@ PROJECT_NAME = "MiniGUI API Reference (MiniGUI-Threads)" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v5.0.0 +PROJECT_NUMBER = v5.0.5 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a @@ -58,7 +58,7 @@ PROJECT_LOGO = # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. -OUTPUT_DIRECTORY = doc-api-ref-minigui-ths-5.0.0 +OUTPUT_DIRECTORY = doc-api-ref-minigui-ths-5.0.5 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- # directories (in 2 levels) under the output directory of each output format and diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index b88354e3..d31fd12e 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,7 @@ # Release Notes +- [Version 5.0.5](#version-505) + + [What's new in version 5.0.5](#whats-new-in-version-505) - [Version 5.0.4](#version-504) + [What's new in version 5.0.4](#whats-new-in-version-504) - [Version 5.0.3](#version-503) @@ -16,6 +18,21 @@ + [Changes leading to incompatibility](#changes-leading-to-incompatibility) + [Deprecated APIs](#deprecated-apis) +## Version 5.0.5 + +The MiniGUI development team announces the availability of MiniGUI 5.0.5, +which is the bug fixing release of MiniGUI 5.0.x. + +### What's new in version 5.0.5 + +In this version, we fixed some bugs and made some minor enhancements: + +* BUGFIXING: + - Adjust the constants for `WS_XXXX` macros to avoid duplicated values. + +Note that the binary backward-compatibility was broken. You should +rebuild all MiniGUI applications. + ## Version 5.0.4 The MiniGUI development team announces the availability of MiniGUI 5.0.4, diff --git a/Version.md b/Version.md index 2eab7875..6c09845f 100644 --- a/Version.md +++ b/Version.md @@ -1,4 +1,4 @@ -Version 5.0.4 (2020/12/31) +Version 5.0.5 (2021/01/31) This is the first official release of MiniGUI 5.0.x, the stable version. diff --git a/configure.ac b/configure.ac index a0dc22d8..ec585aa4 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ(2.60) -AC_INIT(libminigui, 5.0.4) +AC_INIT(libminigui, 5.0.5) AC_CONFIG_SRCDIR(src/main/main.c) dnl Set various version strings - taken gratefully from the SDL sources @@ -16,9 +16,9 @@ dnl Set various version strings - taken gratefully from the SDL sources # MINIGUI_MAJOR_VERSION=5 MINIGUI_MINOR_VERSION=0 -MINIGUI_MICRO_VERSION=4 -MINIGUI_INTERFACE_AGE=1 -MINIGUI_BINARY_AGE=4 +MINIGUI_MICRO_VERSION=5 +MINIGUI_INTERFACE_AGE=0 +MINIGUI_BINARY_AGE=0 MINIGUI_VERSION=$MINIGUI_MAJOR_VERSION.$MINIGUI_MINOR_VERSION.$MINIGUI_MICRO_VERSION AC_SUBST(MINIGUI_MAJOR_VERSION)