Skip to content

Commit b365794

Browse files
authored
Release 1.2.7.1 (#317)
* Release 1.2.7.1 * Move codename to gradle.properties * Fix help parsing of config version
1 parent 39b2f3d commit b365794

File tree

5 files changed

+14
-22
lines changed

5 files changed

+14
-22
lines changed

CHANGELOG.md

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

3-
## 1.2.8 () - ?
4-
### Added
5-
3+
## 1.2.7.1 (13/04/2020) - Hope
64
### Fixed
7-
8-
### Changed
5+
- div.d incorrectly emits SEVERE logging statement (Issue #315)
6+
- Issues with v1.2.7 packages (Issue #311)
97

108
## 1.2.7 (11/04/2020) - Hope
119
### Fixed

RELEASE_NOTES.md

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
1-
# EduMIPS64 version 1.2.7
1+
# EduMIPS64 version 1.2.7.1
22

3-
*11th of April, 2020*
3+
*13th of April, 2020*
44

55
EduMIPS64 is a GPL MIPS64 Instruction Set Architecture (ISA) simulator and graphical debugger.
66

77
## Notes for this release:
88

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.
9+
This is version 1.2.7.1 of EduMIPS64, a minor 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.
1010

11-
This release most notably fixes issue #308, which exposed 2 bugs related to EduMIPS64's FPU.
12-
13-
We are now using GitHub Actions instead of Azure Pipelines as a CI system.
11+
This release fixes 2 minor issues introduced in 1.2.7.
1412

1513
Please keep in mind that this is still EXPERIMENTAL SOFTWARE. It may
1614
BURN YOUR HARD DISK, DESTROY ALL YOUR DATA and even GO OUT WITH YOUR
@@ -22,12 +20,7 @@ EduMIPS64 is hosted on GitHub: www.github.com/EduMIPS64/edumips64.
2220

2321
Our web site is www.edumips.org, and our development blog is http://edumips64.blogspot.com.
2422

25-
## New in this release since version 1.2.6
26-
23+
## New in this release since version 1.2.7
2724
### Fixed
28-
- RAW stall in combination with FPU caused instructions to disappear (Issue #304)
29-
- Some instructions not showing correctly in Cycles UI (Issue #304)
30-
31-
### Changed
32-
- Using GitHub Actions instead of Azure Pipelines as CI.
33-
- Added timeouts to tests
25+
- div.d incorrectly emits SEVERE logging statement (Issue #315)
26+
- Issues with v1.2.7 packages (Issue #311)

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 = "?"
30+
val codename: String by project
3131
val version: String by project
3232

3333
// Specify Java source/target version.

docs/user/common_conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Get the version from build.gradle.kts
44
import re
55

6-
regexp = re.compile(r'version\s*=\s*(\d+\.\d+\.\d+)')
6+
regexp = re.compile(r'version\s*=\s*(.*)')
77
with open('../../../../gradle.properties') as f:
88
for line in f:
99
if regexp.match(line):

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
version=1.2.8
1+
version=1.2.7.1
2+
codename="Hope"

0 commit comments

Comments
 (0)