Skip to content

Commit

Permalink
This is v10.3 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
vhelin committed Oct 2, 2022
1 parent 5a3f556 commit f08406a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions main.c
Expand Up @@ -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];
Expand Down Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions wlalink/main.c
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit f08406a

Please sign in to comment.