Skip to content

Commit

Permalink
Update version (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonioborondo authored Jan 8, 2024
1 parent 0b47719 commit 3de1df2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.28.1)

project(time_tracker VERSION 1.0.0)
project(time_tracker VERSION 1.1.0)

set(CMAKE_CXX_STANDARD 17)

Expand Down
2 changes: 1 addition & 1 deletion src/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ int main(int argc, char** argv) {

std::cout << "\nTotal time: " << db.Summary() << "\n";
} else if (variables_map.count("version")) {
std::cout << "time_tracker 1.0.0" << std::endl;
std::cout << "time_tracker 1.1.0" << std::endl;
} else {
std::cout << "Usage: time_tracker [OPTION]" << std::endl;
std::cout << options_description << std::endl;
Expand Down

0 comments on commit 3de1df2

Please sign in to comment.