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
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion .github/workflows/unit-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions include/respond/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 //
Expand All @@ -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)
Expand Down