diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e6e507..a473ce9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ cmake_minimum_required(VERSION 3.28) project(privacyShield - VERSION 2.5.0 + VERSION 3.0.0 DESCRIPTION "A suite of tools for privacy and security" HOMEPAGE_URL "https://shield.iandee.tech" LANGUAGES C CXX) diff --git a/src/main.cpp b/src/main.cpp index ccf43b7..217db68 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -115,7 +115,7 @@ int main(const int argc, const char **argv) { throw std::runtime_error("Failed to initialize libsodium."); // Display information about the program - printColoredOutputln('c', "\nPrivacy Shield 2.5.0"); + printColoredOutputln('c', "\nPrivacy Shield 3.0.0"); printColoredOutputln('b', "Copyright (C) 2024 Ian Duncan."); printColoredOutput('g', "This program comes with "); @@ -167,7 +167,6 @@ int main(const int argc, const char **argv) { printColoredErrorln('r', "An error occurred."); } } - return 0; } catch (const std::exception &ex) { printColoredErrorln('r', "Error: {}", ex.what());