Skip to content

Commit 337ef6d

Browse files
authored
Version 1.2.7 (#308)
1 parent 42d6a02 commit 337ef6d

File tree

4 files changed

+19
-38
lines changed

4 files changed

+19
-38
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# EduMIPS64 ChangeLog
22

3-
## next (...)
4-
### Added
3+
## 1.2.7 (11/04/2020) - Hope
54
### Fixed
6-
### Changed
5+
- RAW stall in combination with FPU caused instructions to disappear (Issue #304)
6+
- Some instructions not showing correctly in Cycles UI (Issue #304)
77

8+
### Changed
89
- Using GitHub Actions instead of Azure Pipelines as CI.
10+
- Added timeouts to tests
911

1012
## 1.2.6 (26/01/2019) - Phlegmatic
1113
### Added

RELEASE_NOTES.md

Lines changed: 12 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,16 @@
1-
# EduMIPS64 version 1.2.6
1+
# EduMIPS64 version 1.2.7
22

3-
*26th of January, 2020*
3+
*11th of April, 2020*
44

5-
EduMIPS64 is a GPL MIPS64 Instruction Set Architecture (ISA) simulator and
6-
graphical debugger.
5+
EduMIPS64 is a GPL MIPS64 Instruction Set Architecture (ISA) simulator and graphical debugger.
76

87
## Notes for this release:
98

10-
This is version 1.2.6 of EduMIPS64, a release that follows up on version
11-
1.2.5, that was released in August 2018. This release contains a couple of
12-
changes, a new instruction alias (DMULU for DMULTU), an increased memory
13-
size (640kB), a better way to report bugs via GitHub and several bug fixes.
9+
This is version 1.2.7 of EduMIPS64, a bug-fix release. Its codename is Hope, because that's what helps us during the COVID-19 lockdown, and also as a reference to the upcoming Easter.
1410

15-
The codename for this release is Phlegmatic. First because it took a while
16-
to release a new version after 1.2.5. Second because I am releasing it while
17-
fighting with a bad and annoying cough, which I hope goes away as soon as
18-
possible.
11+
This release most notably fixes issue #308, which exposed 2 bugs related to EduMIPS64's FPU.
1912

20-
This release reverts the build system change in 1.2.5: we went back from
21-
Bazel to Gradle. There was no real benefit in using Bazel, and Gradle is
22-
more supported by IDEs. The main advantage we got from the Bazel migration
23-
was better code modularity, and that benefit still remains.
24-
25-
We are now using Azure Pipelines instead of Travis as a CI system.
13+
We are now using GitHub Actions instead of Azure Pipelines as a CI system.
2614

2715
Please keep in mind that this is still EXPERIMENTAL SOFTWARE. It may
2816
BURN YOUR HARD DISK, DESTROY ALL YOUR DATA and even GO OUT WITH YOUR
@@ -31,24 +19,15 @@ PARTNER. :)
3119
If you find a bug, please open an issue on GitHub.
3220

3321
EduMIPS64 is hosted on GitHub: www.github.com/EduMIPS64/edumips64.
34-
Our web site is www.edumips.org, and our development blog is
35-
http://edumips64.blogspot.com.
36-
37-
## New in this release since version 1.2.5
3822

39-
### Added
23+
Our web site is www.edumips.org, and our development blog is http://edumips64.blogspot.com.
4024

41-
- Alias DMULU for DMULTU (Issue #249)
25+
## New in this release since version 1.2.6
4226

4327
### Fixed
44-
45-
- Trying to store a large memory location in an immediate field causes EduMIPS64 to crash (Issue #255)
46-
- Fixed NullReference in the CLI application (#258)
28+
- RAW stall in combination with FPU caused instructions to disappear (Issue #304)
29+
- Some instructions not showing correctly in Cycles UI (Issue #304)
4730

4831
### Changed
49-
50-
- Improved the way OOM errors are handled (Issues #257 and #266)
51-
- Increased default data memory to 640 kB (Issue #268)
52-
- Improved the bug report dialog (Issue #262)
53-
- Code quality improvements (Issue #222, still open)
54-
- Migrated back to Gradle from Bazel (Issue #226)
32+
- Using GitHub Actions instead of Azure Pipelines as CI.
33+
- Added timeouts to tests

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies {
2727
application {
2828
mainClassName = "org.edumips64.Main"
2929
}
30-
val codename = "Phlegmatic"
30+
val codename = "Hope"
3131
val version: String by project
3232

3333
// Specify Java source/target version.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version=1.2.6
1+
version=1.2.7

0 commit comments

Comments
 (0)