Release version 0.8.

This commit is contained in:
Olaf Seibert
2022-07-07 07:07:07 +00:00
parent 334d7b6f33
commit 0616816f8e
2 changed files with 5 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
??.??.2022: Rhialto
07.07.2022: Rhialto
version 0.8:
- Improve parsing of symbols, e.g. `4..` is not a symbol.
- More careful file format checking of .MLB files, so that you can
@@ -6,7 +6,7 @@
- Replace the floating point parser by a version which is based on
integer math only, because the Apple M1 doesn't have the required
long double support in its compiler.
12 changes from Paul Koning that add some features which help to
13 changes from Paul Koning that add some features which help to
assemble RSTS/E sources:
- Add default extensions to .include, .library
- Fix .psect without argument, add (ignored) pseudo ops .mdelete,
@@ -25,6 +25,7 @@
just delimited string characters but also values in < >.
- Allow expression (with constant value) in .RADIX
- Bugfixes in macro expansion, incl duplicate named arguments
- Fix references to blank section: Its name is empty, not ". BLK."
05.01.2022: Rhialto
version 0.7.2:

View File

@@ -3,12 +3,12 @@
#include "git-info.h"
#define BASE_VERSION "0.8wip"
#define BASE_VERSION "0.8"
#if defined(GIT_VERSION)
#define VERSIONSTR BASE_VERSION" ("GIT_VERSION"\n\t"GIT_AUTHOR_DATE")"
#else
#define VERSIONSTR BASE_VERSION" (xx Xxx 2022)"
#define VERSIONSTR BASE_VERSION" (07 Jul 2022)"
/*#define VERSIONSTR "0.3 (April 21, 2009)" */
/*#define VERSIONSTR "0.2 July 15, 2001" */
#endif