bb64 release v38

This commit is contained in:
Your Name 2025-05-18 23:42:35 +12:00
parent 78e3a9af97
commit 745c7a8c9c
2 changed files with 8 additions and 1 deletions

View File

@ -149,6 +149,8 @@ Usage:
bb64 -u Updates bb64 to the latest version (uses docker) bb64 -u Updates bb64 to the latest version (uses docker)
bb64 -v Prints the version number
)" << std::endl; )" << std::endl;
return -1; return -1;
} }
@ -159,6 +161,11 @@ Usage:
{ {
if (mode == "-u") if (mode == "-u")
return update_bb64(); return update_bb64();
else if (mode == "-v")
{
std::cout << VERSION << std::endl;
return 0;
}
else if (mode == "-e") else if (mode == "-e")
{ {
std::ostringstream oss; std::ostringstream oss;

View File

@ -1 +1 @@
static const char *VERSION = "37"; static const char *VERSION = "38";