Update ORCA/C version number to 2.2.1 final.

Also, update the release notes.
This commit is contained in:
Stephen Heumann
2024-08-21 19:05:15 -05:00
parent 55898ddd60
commit b363a2c006
4 changed files with 8 additions and 4 deletions

4
CC.rez
View File

@@ -5,8 +5,8 @@ resource rVersion(1) {
2, /* Major revision */ 2, /* Major revision */
2, /* Minor revision */ 2, /* Minor revision */
1, /* Bug version */ 1, /* Bug version */
development, /* Release stage */ release, /* Release stage */
1, /* Non-final release # */ 0, /* Non-final release # */
}, },
verUS, /* Region code */ verUS, /* Region code */
"ORCA/C", /* Short version number */ "ORCA/C", /* Short version number */

View File

@@ -112,7 +112,7 @@ const
flag_t = $00001000; {treat all errors as terminal?} flag_t = $00001000; {treat all errors as terminal?}
flag_w = $00000200; {wait when an error is found?} flag_w = $00000200; {wait when an error is found?}
versionStr = '2.2.1 dev'; {compiler version} versionStr = '2.2.1'; {compiler version}
type type
{Misc.} {Misc.}

View File

@@ -18,7 +18,7 @@ uses CCommon, MM, Scanner, Symbol, CGI;
{$segment 'HEADER'} {$segment 'HEADER'}
const const
symFileVersion = 44; {version number of .sym file format} symFileVersion = 45; {version number of .sym file format}
var var
inhibitHeader: boolean; {should .sym includes be blocked?} inhibitHeader: boolean; {should .sym includes be blocked?}

View File

@@ -8,6 +8,10 @@ These release notes document the changes between ORCA/C 2.0 and ORCA/C 2.2.1. T
2.2.1 1. Bugs squashed. See bug notes, below. 2.2.1 1. Bugs squashed. See bug notes, below.
2. Small optimizations in some library functions.
3. Improved the code generated for certain operations.
2.2.0 1. Bugs squashed. See bug notes, below. 2.2.0 1. Bugs squashed. See bug notes, below.
2. New language features added (mainly features from C99 and C11). 2. New language features added (mainly features from C99 and C11).