Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# WriteDebugString - Changes <!-- omit in toc -->


## 0.0.3 - 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.2 - 24th August 2026

* Updated the CMake configuration to honour caller-supplied C and C++ standards and report the build type;
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

| Date | News Item |
| -------------------- | -------------------------------------------------- |
| 27th August 2026 | [0.0.3 released](https://github.com/sistools/WriteDebugString/releases/tag/0.0.3) |
| 24th August 2026 | [0.0.2 released](https://github.com/sistools/WriteDebugString/releases/tag/0.0.2) |
| 3rd August 2026 | 0.0.1 released |

Expand Down
6 changes: 2 additions & 4 deletions cmake/BuildType.cmake
Original file line number Diff line number Diff line change
@@ -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
#
# ######################################################################## #

Expand Down Expand Up @@ -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
)

Expand All @@ -56,4 +55,3 @@ if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
endif()

# ############################## end of file ############################# #

2 changes: 1 addition & 1 deletion doc/writedebugstring.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Copyright (c) 2020-2026, Matthew Wilson and Synesis Information Systems
.\"
.TH WRITEDEBUGSTRING 1 "August 2026" "writedebugstring 0.0.2" "User Commands"
.TH WRITEDEBUGSTRING 1 "August 2026" "writedebugstring 0.0.3" "User Commands"
.SH NAME
writedebugstring \- write messages to the Windows debug output stream
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#define WRITEDEBUGSTRING_VER_MAJOR 0
#define WRITEDEBUGSTRING_VER_MINOR 0
#define WRITEDEBUGSTRING_VER_PATCH 2
#define WRITEDEBUGSTRING_VER_PATCH 3


int main(int argc, char* argv[])
Expand Down
Loading