From a588b5665082c54a8d62bbfdef702e1f49b4bca9 Mon Sep 17 00:00:00 2001 From: Matthew Carroll <28577806+MJC598@users.noreply.github.com> Date: Tue, 17 Feb 2026 10:00:18 -0500 Subject: [PATCH 1/3] Adding shared windows build back and turning on file glob pattern for release --- .github/workflows/release.yml | 1 + .github/workflows/unit-testing.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fd1b5924..ddefa523 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,4 +39,5 @@ jobs: with: repo_token: ${{ secrets.GITHUB_TOKEN }} file: ${{ github.workspace }}/build/${{ matrix.build-variant }}/*.deb + file_glob: true tag: ${{ github.ref }} diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml index 737b2cae..179c566e 100644 --- a/.github/workflows/unit-testing.yml +++ b/.github/workflows/unit-testing.yml @@ -3,7 +3,7 @@ name: Respond Unit Testing on: push: - branches: ["main"] + branches: ["main", "hotfix/windows-build"] pull_request: branches: ["main"] @@ -59,7 +59,7 @@ jobs: if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then echo "Testing Linux" cmake --workflow --preset test-debug-linux-${{matrix.build-variant}}-workflow - elif [ "${{ matrix.os}}" == "windows-latest" && "${{matrix.build-variant}}" == "static"]; then + elif [ "${{ matrix.os}}" == "windows-latest"]; then echo "Testing Microsoft" cmake --workflow --preset test-debug-microsoft-${{matrix.build-variant}}-workflow fi From 5827bcc2e4f20b6df456481928fec77c36533e0a Mon Sep 17 00:00:00 2001 From: Matthew Carroll <28577806+MJC598@users.noreply.github.com> Date: Tue, 17 Feb 2026 10:04:06 -0500 Subject: [PATCH 2/3] Bug fixing --- .github/workflows/unit-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml index 179c566e..e6da04ac 100644 --- a/.github/workflows/unit-testing.yml +++ b/.github/workflows/unit-testing.yml @@ -59,7 +59,7 @@ jobs: if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then echo "Testing Linux" cmake --workflow --preset test-debug-linux-${{matrix.build-variant}}-workflow - elif [ "${{ matrix.os}}" == "windows-latest"]; then + elif [ "${{ matrix.os }}" == "windows-latest" ]; then echo "Testing Microsoft" cmake --workflow --preset test-debug-microsoft-${{matrix.build-variant}}-workflow fi From def2be26183f164fa9afc0197f2af58bfc66565c Mon Sep 17 00:00:00 2001 From: Matthew Carroll <28577806+MJC598@users.noreply.github.com> Date: Tue, 17 Feb 2026 10:25:49 -0500 Subject: [PATCH 3/3] Adding version number changes --- .github/workflows/unit-testing.yml | 2 +- Doxyfile.in | 2 +- include/respond/version.hpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unit-testing.yml b/.github/workflows/unit-testing.yml index e6da04ac..dec406d4 100644 --- a/.github/workflows/unit-testing.yml +++ b/.github/workflows/unit-testing.yml @@ -3,7 +3,7 @@ name: Respond Unit Testing on: push: - branches: ["main", "hotfix/windows-build"] + branches: ["main"] pull_request: branches: ["main"] diff --git a/Doxyfile.in b/Doxyfile.in index 88ae53c3..ab659a05 100644 --- a/Doxyfile.in +++ b/Doxyfile.in @@ -48,7 +48,7 @@ PROJECT_NAME = RESPOND # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2.3.0 +PROJECT_NUMBER = 2.3.1 # 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 diff --git a/include/respond/version.hpp b/include/respond/version.hpp index b710d664..6dc9a438 100644 --- a/include/respond/version.hpp +++ b/include/respond/version.hpp @@ -4,7 +4,7 @@ // Created Date: 2025-03-06 // // Author: Matthew Carroll // // ----- // -// Last Modified: 2026-02-09 // +// Last Modified: 2026-02-17 // // Modified By: Matthew Carroll // // ----- // // Copyright (c) 2025-2026 Syndemics Lab at Boston Medical Center // @@ -15,7 +15,7 @@ #define RESPOND_VER_MAJOR 2 #define RESPOND_VER_MINOR 3 -#define RESPOND_VER_PATCH 0 +#define RESPOND_VER_PATCH 1 #define RESPOND_TO_VERSION(major, minor, patch) \ (major * 10000 + minor * 100 + patch)