Reset version

This commit is contained in:
Tilen Majerle 2021-04-08 00:24:40 +02:00
parent 216ca11092
commit 0ee6df331d
2 changed files with 9 additions and 2 deletions

View File

@ -13,7 +13,14 @@ addint_cmd(int32_t argc, char** argv) {
}
int
main(void) {
main(int argc, char** argv) {
printf("Program started...\r\n");
printf("ARGC: %d\r\n", argc);
for (size_t i = 0; i < argc; ++i) {
printf("ARGV %d: %s\r\n", i, argv[i]);
}
printf("\r\n");
lwshell_init();
lwshell_register_cmd("addint", addint_cmd, "Adds int between 2 arguments");

View File

@ -27,7 +27,7 @@ copyright = '2020, Tilen MAJERLE'
author = 'Tilen MAJERLE'
# The full version, including alpha/beta/rc tags
version = 'v1.4.0'
version = '$_version_$'
# Try to get branch at which this is running
# and try to determine which version to display in sphinx