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
2 changes: 1 addition & 1 deletion .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
link: [shared, static]

container:
image: ghcr.io/morphgrid/framework:1.0.0-boost-${{ matrix.version }}-${{ matrix.type }}-${{ matrix.link }}
image: ghcr.io/morphgrid/framework:1.0.2-boost-${{ matrix.version }}-${{ matrix.type }}-${{ matrix.link }}

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion src/include/about.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ using namespace framework;
namespace about {
namespace program {
inline const std::string name = "Base";
inline const std::string version = "1.0.1";
inline const std::string version = "1.0.2";
std::string get_version();
} // namespace program

Expand Down
4 changes: 2 additions & 2 deletions tests/test_about.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
#include <about.hpp>

TEST(test_about, contains_program_name) { ASSERT_EQ(about::program::name, "Base"); }
TEST(test_about, contains_program_version) { ASSERT_EQ(about::program::version, "1.0.1"); }
TEST(test_about, contains_program_version_as_method) { ASSERT_EQ(about::program::get_version(), "1.0.1"); }
TEST(test_about, contains_program_version) { ASSERT_EQ(about::program::version, "1.0.2"); }
TEST(test_about, contains_program_version_as_method) { ASSERT_EQ(about::program::get_version(), "1.0.2"); }
Loading