Skip to content

Commit

Permalink
Moved to version 1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
spotlessmind1975 committed Oct 12, 2023
1 parent 43cc896 commit 5bfe090
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ugbc/src/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ugbc/src/targets/common/_shell.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down
2 changes: 1 addition & 1 deletion ugbc/src/ugbc.y
Original file line number Diff line number Diff line change
Expand Up @@ -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[] ) {

Expand Down

0 comments on commit 5bfe090

Please sign in to comment.