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..dec406d4 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" && "${{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 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)