From f08406a4f0be8a58e47012aacbdbc1d98cad4300 Mon Sep 17 00:00:00 2001 From: Ville Helin Date: Sun, 2 Oct 2022 12:46:02 +0300 Subject: [PATCH] This is v10.3 release. --- CHANGELOG | 4 ++-- doc/conf.py | 2 +- main.c | 4 ++-- wlalink/main.c | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 81eecce4..89a9d04b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,7 +3,7 @@ 1... WLA GB-Z80/Z80/6502/65C02/65CE02/65816/6800/6801/6809/8008/8080/HUC6280/SPC-700/SuperFX History ---------------------------------------------------------------------------------------------------- -v10.3 (21-Sep-2022) [ALL] Improved parser for .HEX, and added BLOCK to .HEX. +v10.3 (02-Oct-2022) [ALL] Improved parser for .HEX, and added BLOCK to .HEX. [ALL] "\\" should now work inside strings. [ALL] .MACRO calling another .MACRO, inside a namespaced file, should now work. @@ -1425,7 +1425,7 @@ v1.0 (10-Jul-2000) The first public release. ------------------------------------------------------------------------------ -v5.18 (13-Sep-2022) Added -v1 and -v2 (shorter verbose levels). +v5.18 (02-Oct-2022) Added -v1 and -v2 (shorter verbose levels). Pending calculations that were marked negative inside pending calculations should now work. Pending calculations that contain pending calculations diff --git a/doc/conf.py b/doc/conf.py index be667bb7..655f46d0 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -18,7 +18,7 @@ project = u'wla-dx' copyright = u'1998, vhelin' version = '10.3' # The short X.Y version, can be used with |version| -release = '10.3a' # The full version, including alpha/beta/rc tags, |release| +release = '10.3' # The full version, including alpha/beta/rc tags, |release| language = None #today = '' #today_fmt = '%B %d, %Y' diff --git a/main.c b/main.c index f1e193e4..8ec943b6 100644 --- a/main.c +++ b/main.c @@ -35,7 +35,7 @@ FILE *g_file_out_ptr = NULL; __near long __stack = 200000; #endif -char g_version_string[] = "$VER: wla-" WLA_NAME " 10.3a (21.9.2022)"; +char g_version_string[] = "$VER: wla-" WLA_NAME " 10.3 (2.10.2022)"; char g_wla_version[] = "10.3"; char g_tmp_name[MAX_NAME_LENGTH + 1], g_makefile_tmp_name[MAX_NAME_LENGTH + 1]; @@ -184,7 +184,7 @@ int main(int argc, char *argv[]) { } if (g_output_format == OUTPUT_NONE || parse_flags_result == FAILED) { - char title[] = "WLA " ARCH_STR " Macro Assembler v10.3a"; + char title[] = "WLA " ARCH_STR " Macro Assembler v10.3"; int length, left, right; length = (int)strlen(title); diff --git a/wlalink/main.c b/wlalink/main.c index 8644d63f..e2b4095f 100644 --- a/wlalink/main.c +++ b/wlalink/main.c @@ -32,7 +32,7 @@ #define WLALINK_DEBUG */ -char g_version_string[] = "$VER: wlalink 5.18a (13.9.2022)"; +char g_version_string[] = "$VER: wlalink 5.18 (2.10.2022)"; #ifdef AMIGA __near long __stack = 200000; @@ -293,7 +293,7 @@ int main(int argc, char *argv[]) { i = FAILED; if (i == FAILED) { - char title[] = "WLALINK - WLA DX Macro Assembler Linker v5.18a"; + char title[] = "WLALINK - WLA DX Macro Assembler Linker v5.18"; int length, left, right; length = (int)strlen(title);