diff --git a/CHANGES.md b/CHANGES.md index 89d581a..8cd8caf 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,11 @@ # ReadDebugString - Changes +## 0.0.2 - 27th August 2026 + +* Fixed **cmake/BuildType.cmake** so the default `CMAKE_BUILD_TYPE` is set correctly in the CMake cache (`set(CMAKE_BUILD_TYPE … CACHE …)` instead of `set(CACHE CMAKE_BUILD_TYPE …)`); + + ## 0.0.1 - 24th August 2026 * Replaced the initial executable scaffold with a Windows debugger message reader; diff --git a/NEWS.md b/NEWS.md index 62441bb..4e8e14b 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,7 @@ | Date | News Item | | ------------------- | --------- | +| 27th August 2026 | [0.0.2 released](https://github.com/sistools/ReadDebugString/releases/tag/0.0.2) | | 24th August 2026 | [0.0.1 released](https://github.com/sistools/ReadDebugString/releases/tag/0.0.1) | | 16th August 2026 | [0.0.0 released](https://github.com/sistools/ReadDebugString/releases/tag/0.0.0) | | 16th August 2026 | [0.0.0 released](https://github.com/sistools/ReadDebugString/releases/tag/0.0.0) | diff --git a/cmake/BuildType.cmake b/cmake/BuildType.cmake index a315b8d..e72619c 100644 --- a/cmake/BuildType.cmake +++ b/cmake/BuildType.cmake @@ -1,11 +1,10 @@ - # ######################################################################## # # File: /cmake/BuildType.cmake # # Purpose: CMake module file (for BuildType) # # Created: 16th October 2019 -# Updated: 25th October 2024 +# Updated: 27th August 2026 # # ######################################################################## # @@ -45,7 +44,7 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) message(STATUS "Setting build type to '${DEFAULT_BUILD_TYPE}' as none was specified.") - set(CACHE CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}" + set(CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}" CACHE STRING "Choose the type of build." FORCE ) @@ -56,4 +55,3 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) endif() # ############################## end of file ############################# # - diff --git a/doc/readdebugstring.1 b/doc/readdebugstring.1 index d261e4f..40db54f 100644 --- a/doc/readdebugstring.1 +++ b/doc/readdebugstring.1 @@ -1,6 +1,6 @@ .\" Copyright (c) 2025-2026, Matthew Wilson and Synesis Information Systems .\" -.TH READDEBUGSTRING 1 "August 2026" "readdebugstring 0.0.1" "User Commands" +.TH READDEBUGSTRING 1 "August 2026" "readdebugstring 0.0.2" "User Commands" .SH NAME readdebugstring \- read messages from the Windows debug output stream .SH SYNOPSIS diff --git a/main.cpp b/main.cpp index 17e2567..2503fd8 100644 --- a/main.cpp +++ b/main.cpp @@ -29,7 +29,7 @@ #define PROGRAM_VER_MAJOR 0 #define PROGRAM_VER_MINOR 0 -#define PROGRAM_VER_PATCH 1 +#define PROGRAM_VER_PATCH 2 union Payload