Skip to content

Commit 4854121

Browse files
committed
chore: corrected version
1 parent 05a5c46 commit 4854121

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.22)
2-
project(ip-analyzer VERSION 0.13.1 LANGUAGES CXX)
2+
project(ip-analyzer VERSION 0.1.4 LANGUAGES CXX)
33

44
set(CMAKE_CXX_STANDARD 23)
55
set(CMAKE_CXX_STANDARD_REQUIRED ON)
@@ -45,4 +45,4 @@ list(APPEND CMAKE_MODULE_PATH ${Catch2_SOURCE_DIR}/extras)
4545
include(Catch)
4646
catch_discover_tests(ip_analyzer_tests
4747
EXTRA_ARGS "-d;yes;-s"
48-
)
48+
)

src/cli_app.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
namespace ip_analyzer {
1919

2020
constexpr std::string_view kAppName = "ip-analyzer";
21-
constexpr std::string_view kVersion = "0.13.1";
21+
constexpr std::string_view kVersion = "0.1.4";
2222
constexpr std::string_view kAuthor = "Volker Schwaberow <volker@schwaberow.de>";
2323

2424
constexpr int kWidth = 80;
@@ -94,4 +94,4 @@ private:
9494
void PrintError(const std::string &message) const;
9595
};
9696

97-
}
97+
}

0 commit comments

Comments
 (0)