From d46318b4ce3a0491fd644ebf34a90ec5aa2dde76 Mon Sep 17 00:00:00 2001 From: Daniel Serpell Date: Sun, 25 Feb 2018 22:16:41 -0300 Subject: [PATCH] Prepare for new release. --- help.txt | 2 +- manual.md | 2 +- src/compiler/main.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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; }