Update version message

This commit is contained in:
Shav Kinderlehrer 2023-04-17 21:55:08 -04:00
parent 2abab7c9e8
commit f8bdf764b2
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
#define ARG_H
#include <stdbool.h>
#define LAT_VERSION "0.8.0"
#define LAT_VERSION "0.8.1"
struct config {
bool stdin;

View File

@ -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;