From 9dad2b6186649915328cce832f982864e8f1198c Mon Sep 17 00:00:00 2001 From: Stephen Heumann Date: Sun, 16 Apr 2023 14:29:02 -0500 Subject: [PATCH] Update displayed version number to mark this as a development version. --- CC.rez | 2 +- CCommon.pas | 2 +- cc.notes | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CC.rez b/CC.rez index 543aa4d..b62a022 100644 --- a/CC.rez +++ b/CC.rez @@ -6,7 +6,7 @@ resource rVersion(1) { 2, /* Minor revision */ 0, /* Bug version */ beta, /* Release stage */ - 7, /* Non-final release # */ + 8, /* Non-final release # */ }, verUS, /* Region code */ "ORCA/C", /* Short version number */ diff --git a/CCommon.pas b/CCommon.pas index 79bde15..7724438 100644 --- a/CCommon.pas +++ b/CCommon.pas @@ -112,7 +112,7 @@ const flag_t = $00001000; {treat all errors as terminal?} flag_w = $00000200; {wait when an error is found?} - versionStr = '2.2.0 B7'; {compiler version} + versionStr = '2.2.0 B8 dev'; {compiler version} type {Misc.} diff --git a/cc.notes b/cc.notes index 2499345..231acba 100644 --- a/cc.notes +++ b/cc.notes @@ -1,10 +1,10 @@ -ORCA/C 2.2.0 B7 +ORCA/C 2.2.0 B8 Copyright 1997, Byte Works Inc. Updated by Stephen Heumann and Kelvin Sherlock, 2017-2023 -- Change List -------------------------------------------------------------- -2.2.0 B7 1. Bugs squashed. See bug notes, below. +2.2.0 B8 1. Bugs squashed. See bug notes, below. 2. New language features added (mainly features from C99 and C11). See "New Language Features," below.