diff --git a/help.txt b/help.txt index 50a847e..4ba1453 100644 --- a/help.txt +++ b/help.txt @@ -1,5 +1,5 @@ ' -' FastBasic v3.2 - (c) 2018 dmsc +' FastBasic v3.3 - (c) 2018 dmsc ' ' Editor Help ' ----------- diff --git a/manual.md b/manual.md index 4e0c476..f9b9c6a 100644 --- a/manual.md +++ b/manual.md @@ -50,7 +50,7 @@ prompt. This will load the IDE and present you with a little help text: --D:HELP.TXT-------------------0-- - ' FastBasic v3.2 - (c) 2018 dmsc + ' FastBasic v3.3 - (c) 2018 dmsc ' ' Editor Help ' ----------- diff --git a/src/compiler/main.cc b/src/compiler/main.cc index f387543..71be32b 100644 --- a/src/compiler/main.cc +++ b/src/compiler/main.cc @@ -93,7 +93,7 @@ static bool readLine(std::string &r, std::istream &is) static int show_version() { - std::cerr << "FastBasic v3.2 - (c) 2018 dmsc\n"; + std::cerr << "FastBasic v3.3 - (c) 2018 dmsc\n"; return 0; }