From f8bdf764b2a532e878f47010428aee534793dd5f Mon Sep 17 00:00:00 2001 From: Shav Kinderlehrer Date: Mon, 17 Apr 2023 21:55:08 -0400 Subject: [PATCH] Update version message --- include/arg.h | 2 +- src/lib/arg.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/arg.h b/include/arg.h index ca65e8e..5c45800 100644 --- a/include/arg.h +++ b/include/arg.h @@ -2,7 +2,7 @@ #define ARG_H #include -#define LAT_VERSION "0.8.0" +#define LAT_VERSION "0.8.1" struct config { bool stdin; diff --git a/src/lib/arg.c b/src/lib/arg.c index 95badbb..39bc816 100644 --- a/src/lib/arg.c +++ b/src/lib/arg.c @@ -19,7 +19,7 @@ void help(void) { } void version(void) { - printf("lat - v%s | %s:%s\n", LAT_VERSION, __DATE__, __TIME__); + printf("lat - v%s built %s at %s\n", LAT_VERSION, __DATE__, __TIME__); } struct config conf;