Skip to content

Commit 08e2f8b

Browse files
pushing 2.0.1 to fix issue in GitHub
1 parent 928251b commit 08e2f8b

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

doc/RetroBASIC reference manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ RetroBASIC Language Reference Manual
33

44
**Copyright © 2023 Maury Markowitz**
55

6-
Version 2.0.0
6+
Version 2.0.1
77

88
[![GPL license](http://img.shields.io/badge/license-GPL-brightgreen.svg)](https://opensource.org/licenses/gpl-license)
99

doc/VERSIONS

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ Version 1.9.1 - 13 February 2024
135135
- added Integer BASIC's variation on TAB, which is a statement, not a pseudo-function
136136
- fix minor issue in RND that caused issues in SST
137137

138-
Version 2.0.0 -
138+
Version 2.0.0 - 8 December 2024
139139

140140
Major update. See the reference manual for details on the many changes.
141141

@@ -160,3 +160,7 @@ Major update. See the reference manual for details on the many changes.
160160
- NEW properly clears the runtime stack for RETURN and NEXT
161161
- slicing now checks against DIMmed bounds in non-ANSI dialects
162162
- added RANDOMIZE TIMER from GW
163+
164+
Version 2.0.1 - 12 December 2024
165+
166+
Fixing major problems with the GitHub repo. Some very minor changes as well.

doc/retrobasic.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
.\" License V.2 as specified in the LICENSE file that comes with
55
.\" the RetroBASIC distribution.
66

7-
.TH RETROBASIC 1 "20 August 2022" v2.0.0 "RetroBASIC"
7+
.TH RETROBASIC 1 "20 August 2022" v2.0.1 "RetroBASIC"
88
.LO 1
99

1010
.SH NAME

src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
/* simple version info for --version command line option */
2828
static void print_version(void)
2929
{
30-
puts("RetroBASIC 2.0.0");
30+
puts("RetroBASIC 2.0.1");
3131
}
3232

3333
/* usage short form, just a list of the switches */

0 commit comments

Comments
 (0)