Prepare for development after released version.

This commit is contained in:
Olaf Seibert 2021-03-19 20:47:29 +01:00
parent 33fc39ff32
commit b9b61a4659
3 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
xx.xx.20xx: Rhialto
version 0.8:
19.03.2021: Rhialto
version 0.7:
- Fixed the end-of-line check for MARK, EMT, TRAP.

View File

@ -80,7 +80,7 @@ static void print_version(
fprintf(strm, " Version %s\n", VERSIONSTR);
fprintf(strm, " Copyright 2001 Richard Krehbiel,\n");
fprintf(strm, " modified 2009 by Joerg Hoppe,\n");
fprintf(strm, " modified 2015-2017,2020 by Olaf 'Rhialto' Seibert.\n");
fprintf(strm, " modified 2015-2017,2020-2021 by Olaf 'Rhialto' Seibert.\n");
}
static void append_env(

View File

@ -3,12 +3,12 @@
#include "git-info.h"
#define BASE_VERSION "0.7"
#define BASE_VERSION "0.8wip"
#if defined(GIT_VERSION)
#define VERSIONSTR BASE_VERSION" ("GIT_VERSION"\n\t"GIT_AUTHOR_DATE")"
#else
#define VERSIONSTR BASE_VERSION" (19 March 2021)"
#define VERSIONSTR BASE_VERSION" (xx Xxxxx 202x)"
/*#define VERSIONSTR "0.3 (April 21, 2009)" */
/*#define VERSIONSTR "0.2 July 15, 2001" */
#endif