diff --git a/CHANGES.md b/CHANGES.md index 246f7be..b591686 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,11 @@ # realpath - Changes +## 0.1.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.1.1 - 23rd August 2026 * Documented the Windows-only program, its **STLSoft** dependency, and its CMake build, installation, and testing workflows in **README.md** and **INSTALL.md**; diff --git a/NEWS.md b/NEWS.md index 8733477..630f91f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,6 +3,7 @@ | Date | News Item | | -------------------- | ---------------- | +| 27th August 2026 | [0.1.2 released](https://github.com/sistools/realpath/releases/tag/0.1.2) | | 23rd August 2026 | [0.1.1 released](https://github.com/sistools/realpath/releases/tag/0.1.1) | | 16th August 2026 | [0.1.0 released](https://github.com/sistools/realpath/releases/tag/0.1.0) | | 3rd August 2026 | 0.0.3 released | 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/realpath.cpp b/realpath.cpp index 22dbf4a..3dab9b2 100644 --- a/realpath.cpp +++ b/realpath.cpp @@ -20,7 +20,7 @@ #define REALPATH_VER_MAJOR 0 #define REALPATH_VER_MINOR 1 -#define REALPATH_VER_PATCH 0 +#define REALPATH_VER_PATCH 2 int main(int argc, char* argv[])