diff options
-rw-r--r-- | debian/changelog | 10 | ||||
-rwxr-xr-x | prepare-release | 2 | ||||
-rw-r--r-- | qtmips.spec | 2 | ||||
-rw-r--r-- | qtmips_gui/aboutdialog.cpp | 2 |
4 files changed, 14 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index f0b4d1e..ac36862 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +qtmips (0.6.7) unstable; urgency=medium + + * Debian package updated to version 0.6.7. + * Change single cycle core with delay slot to use separate fetch stage. + * Program listing and stages use color background. + * Correct write through spelling. Reported by Richard Susta. + * qtmips_cli can be used for cache statistic and result memory tests. + + -- Pavel Pisa <pisa@cmp.felk.cvut.cz> Wed, 27 Mar 2019 00:38:24 +0100 + qtmips (0.6.6) unstable; urgency=medium * Corrected row and column output in cache address fields. diff --git a/prepare-release b/prepare-release index ae49f02..0352c02 100755 --- a/prepare-release +++ b/prepare-release @@ -60,6 +60,8 @@ rm -rf ../debian-test-build mkdir -p ../debian-test-build/qtmips-$V_TXT +cp -xa . ../debian-test-build/qtmips-$V_TXT + cd ../debian-test-build/qtmips-$V_TXT || exit 1 dpkg-buildpackage diff --git a/qtmips.spec b/qtmips.spec index 0542c7e..d7f0f0c 100644 --- a/qtmips.spec +++ b/qtmips.spec @@ -20,7 +20,7 @@ Name: qtmips -Version: 0.6.6 +Version: 0.6.7 Release: 0 Summary: MIPS CPU simulator for education purposes with pipeline and cache visualization License: GPL-2.0-or-later diff --git a/qtmips_gui/aboutdialog.cpp b/qtmips_gui/aboutdialog.cpp index 8919bdf..331d0a3 100644 --- a/qtmips_gui/aboutdialog.cpp +++ b/qtmips_gui/aboutdialog.cpp @@ -67,7 +67,7 @@ AboutDialog::AboutDialog(QWidget *parent) hl->addWidget(vbox); QString versionText; - versionText = "Version 0.6.6 \n"; + versionText = "Version 0.6.7\n"; vl->addWidget(new QLabel("<span style='font-size:x-large; font-weight:bold;'>Qt Mips - MIPS Architecture Simulator</span>")); lbl = new QLabel(versionText); |