From 287f2fb4eddf160f070bffcb6a29fff83c316be9 Mon Sep 17 00:00:00 2001 From: Benjamin Landers Date: Tue, 26 Nov 2019 16:34:36 -0800 Subject: [PATCH] Bump version to 1.4 --- README.md | 2 +- src/help/Command.html | 2 +- src/help/Debugging.html | 2 +- src/help/History.html | 10 ++++++++-- src/help/IDE.html | 2 +- src/help/Intro.html | 2 +- src/help/Limits.html | 2 +- src/help/Tools.html | 2 +- src/rars/Globals.java | 2 +- 9 files changed, 16 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 64a79357..ae381dfb 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ an effective development environment for people getting started with RISC-V. ## Features - - RV32IMF ISA with some support for user level interrupts. + - RV32IMFDN ISA - Several system calls that match behaviour from MARS or SPIKE. - Support for debugging using breakpoints and/or `ebreak` - Side by side comparison from psuedo-instruction to machine code with diff --git a/src/help/Command.html b/src/help/Command.html index 2a75a196..86b0fb61 100644 --- a/src/help/Command.html +++ b/src/help/Command.html @@ -1,5 +1,5 @@ -RARS 1.3 help contents +<title>RARS 1.4 help contents
diff --git a/src/help/Debugging.html b/src/help/Debugging.html index 97a0949c..896f44c8 100644 --- a/src/help/Debugging.html +++ b/src/help/Debugging.html @@ -1,5 +1,5 @@ -RARS 1.3 help contents +<title>RARS 1.4 help contents
diff --git a/src/help/History.html b/src/help/History.html index f9de578f..e59b751e 100644 --- a/src/help/History.html +++ b/src/help/History.html @@ -4,11 +4,17 @@

RARS - RISC-V Assembler and Runtime Simulator

-

Release 1.3

-

June 2019

+

Release 1.4

+

November 2019

Release History

+

+ RARS 1.4 was released in November 2019. + It added support for the D extension, fixed known bugs in the F extension, improved compatability with GCC and clang, and fixed several bugs. + A full changelist is availible at https://github.com/TheThirdOne/rars/releases/tag/v1.4 +

+

RARS 1.3 was released in June 2019. It added a Java API to allow for quick automated simulation and contains several bugfixes. diff --git a/src/help/IDE.html b/src/help/IDE.html index 7d02e663..59494284 100644 --- a/src/help/IDE.html +++ b/src/help/IDE.html @@ -1,5 +1,5 @@ -RARS 1.3 help contents +<title>RARS 1.4 help contents

diff --git a/src/help/Intro.html b/src/help/Intro.html index 019b82d0..613444e0 100644 --- a/src/help/Intro.html +++ b/src/help/Intro.html @@ -1,5 +1,5 @@ -RARS 1.3 help contents +<title>RARS 1.4 help contents
diff --git a/src/help/Limits.html b/src/help/Limits.html index eddb8763..cbb61f36 100644 --- a/src/help/Limits.html +++ b/src/help/Limits.html @@ -1,5 +1,5 @@ -RARS 1.3 help contents +<title>RARS 1.4 help contents
diff --git a/src/help/Tools.html b/src/help/Tools.html index 7656e900..a2968e39 100644 --- a/src/help/Tools.html +++ b/src/help/Tools.html @@ -1,5 +1,5 @@ -RARS 1.3 help contents +<title>RARS 1.4 help contents
diff --git a/src/rars/Globals.java b/src/rars/Globals.java index 0640a0d3..759ad171 100644 --- a/src/rars/Globals.java +++ b/src/rars/Globals.java @@ -100,7 +100,7 @@ public class Globals { /** * The current version number. Can't wait for "initialize()" call to get it. */ - public static final String version = "1.3"; + public static final String version = "1.4"; /** * List of accepted file extensions for RISCV assembly source files. */