diff --git a/ugbc/src/Doxyfile b/ugbc/src/Doxyfile index 5ded11772..7960e26a8 100755 --- a/ugbc/src/Doxyfile +++ b/ugbc/src/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = ugBASIC # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.14.2 +PROJECT_NUMBER = 1.15 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/ugbc/src/targets/common/_shell.c b/ugbc/src/targets/common/_shell.c index 9670a2fc4..ddfda4637 100755 --- a/ugbc/src/targets/common/_shell.c +++ b/ugbc/src/targets/common/_shell.c @@ -41,7 +41,7 @@ void shell_injection( Environment * _environment ) { Variable * presentationLine = variable_define( _environment, "SHELL_PRESENTATION", VT_STRING, 0 ); - variable_store_string( _environment, presentationLine->name, "ugBASIC Runtime version 1.14.2" ); + variable_store_string( _environment, presentationLine->name, "ugBASIC Runtime version 1.15" ); Variable * prompt = variable_define( _environment, "SHELL_PROMPT", VT_STRING, 0 ); variable_store_string( _environment, prompt->name, "READY" ); Variable * command = variable_define( _environment, "SHELL_COMMAND", VT_DSTRING, 0 ); diff --git a/ugbc/src/ugbc.y b/ugbc/src/ugbc.y index edf7ffb91..a01934812 100755 --- a/ugbc/src/ugbc.y +++ b/ugbc/src/ugbc.y @@ -7765,7 +7765,7 @@ program : %% -char version[MAX_TEMPORARY_STORAGE] = "1.14.2"; +char version[MAX_TEMPORARY_STORAGE] = "1.15"; void show_usage_and_exit( int _argc, char *_argv[] ) {