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 CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.30)
project(base)
project(base VERSION 1.0.1)

set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
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.0";
inline const std::string version = "1.0.1";
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.0"); }
TEST(test_about, contains_program_version_as_method) { ASSERT_EQ(about::program::get_version(), "1.0.0"); }
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"); }
Loading