Skip to content

Commit f41889a

Browse files
committed
Version 3.0.0 release
1 parent cc1e59b commit f41889a

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
cmake_minimum_required(VERSION 3.28)
1919

2020
project(privacyShield
21-
VERSION 2.5.0
21+
VERSION 3.0.0
2222
DESCRIPTION "A suite of tools for privacy and security"
2323
HOMEPAGE_URL "https://shield.iandee.tech"
2424
LANGUAGES C CXX)

src/main.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ int main(const int argc, const char **argv) {
115115
throw std::runtime_error("Failed to initialize libsodium.");
116116

117117
// Display information about the program
118-
printColoredOutputln('c', "\nPrivacy Shield 2.5.0");
118+
printColoredOutputln('c', "\nPrivacy Shield 3.0.0");
119119
printColoredOutputln('b', "Copyright (C) 2024 Ian Duncan.");
120120

121121
printColoredOutput('g', "This program comes with ");
@@ -167,7 +167,6 @@ int main(const int argc, const char **argv) {
167167
printColoredErrorln('r', "An error occurred.");
168168
}
169169
}
170-
171170
return 0;
172171
} catch (const std::exception &ex) {
173172
printColoredErrorln('r', "Error: {}", ex.what());

0 commit comments

Comments
 (0)