Skip to content

Commit

Permalink
Bump version to 1.2 and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
TheThirdOne committed Mar 21, 2019
1 parent efdaea9 commit 54ef9ba
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 13 deletions.
2 changes: 1 addition & 1 deletion META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Manifest-Version: 1.1
Manifest-Version: 1.0
Class-Path: .
Created-By: 1.6.0_33 (Sun Microsystems Inc.)
Main-Class: rars.Launch
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ RARS, the RISC-V Assembler, Simulator, and Runtime, will assemble and simulate
the execution of RISC-V assembly language programs. Its primary goal is to be
an effective development environment for people getting started with RISC-V.

The latest release can be found on the [releases page](https://github.com/TheThirdOne/rars/releases).

![Screenshot of sample program](screenshot.png)


## Changes from MARS 4.5

RARS was built on MARS 4.5 and owes a lot to the development of MARS; its
Expand Down
3 changes: 1 addition & 2 deletions help/BugReportingHelp.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ <h3>Bug Reporting and General Comments</h3>
and will contain updated releases, bug lists, etc.

<p>
For bug reporting, please create an issue at <b>https://github.com/TheThirdOne/rars/issues</b> for general
questions or comments email the lowRISC mailing list <b>[email protected]</b>.
For bug reporting, questions or comments, please create an issue at <b>https://github.com/TheThirdOne/rars/issues</b>
</p>
</body>
</html>
2 changes: 1 addition & 1 deletion help/Command.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<title>RARS 1.1 help contents
<title>RARS 1.2 help contents
</title>
<body>
<center>
Expand Down
2 changes: 1 addition & 1 deletion help/Debugging.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<title>RARS 1.0 help contents
<title>RARS 1.2 help contents
</title>
<body>
<center>
Expand Down
6 changes: 4 additions & 2 deletions help/History.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
<body>
<center>
<h3>RARS - RISC-V Assembler and Runtime Simulator</h3>
<h4>Release 1.1</h4>
<h4>August 2018</h4>
<h4>Release 1.2</h4>
<h4>March 2019</h4>
<h4>Release History</h4>
</center>

<p>RARS 1.2 was released in March 2019. It improved tooling for new developers and fixed some documentation issues</p>

<p>RARS 1.1 was released in August 2018. This release fixed a bug with AUIPC and psuedointructions that used it, lbu
requiring half-word alignment and the funct fields of bge,bgeu, and bltu </p>

Expand Down
2 changes: 1 addition & 1 deletion help/IDE.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<title>RARS 1.1 help contents
<title>RARS 1.2 help contents
</title>
<body>
<center>
Expand Down
2 changes: 1 addition & 1 deletion help/Intro.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<title>RARS 1.1 help contents
<title>RARS 1.2 help contents
</title>
<body>
<center>
Expand Down
2 changes: 1 addition & 1 deletion help/Limits.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<title>RARS 1.1 help contents
<title>RARS 1.2 help contents
</title>
<body>
<center>
Expand Down
2 changes: 1 addition & 1 deletion help/Tools.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<html>
<title>RARS 1.1 help contents
<title>RARS 1.2 help contents
</title>
<body>
<center>
Expand Down
4 changes: 2 additions & 2 deletions rars/Globals.java
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public class Globals {
/**
* The current version number. Can't wait for "initialize()" call to get it.
*/
public static final String version = "1.1";
public static final String version = "1.2";
/**
* List of accepted file extensions for RISCV assembly source files.
*/
Expand Down Expand Up @@ -140,7 +140,7 @@ public class Globals {
public static boolean runSpeedPanelExists = false;

private static String getCopyrightYears() {
return "2003-2018";
return "2003-2019";
}

private static String getCopyrightHolders() {
Expand Down
Binary file added screenshot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 54ef9ba

Please sign in to comment.