Skip to content

Commit aa06e18

Browse files
committed
Release: update version to 0.8.1
Signed-off-by: Pavel Pisa <[email protected]>
1 parent b3cbddf commit aa06e18

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_policy(VERSION 3.10)
33

44
project(QtMips
55
LANGUAGES C CXX
6-
VERSION 0.8.0
6+
VERSION 0.8.1
77
DESCRIPTION "MIPS CPU simulator for education purposes")
88

99
set(KAREL_KOCI "Karel Koci <[email protected]>")

extras/packaging/deb/debian/changelog

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
qtmips (0.8.1-1) unstable; urgency=medium
2+
3+
* Machine: LRU cache policy fix
4+
* Machine: correct cache graphics visualization for byte accesses.
5+
* CI: release.yml - fix apt install
6+
* Machine: correct and refactor unaligned access to peripheries
7+
* Machine: add memory access helper for access with granularity 16-bits.
8+
* Machine: fix LCD display endianness.
9+
* Packaging: fix Fedora build according to Jan Grulich advice.
10+
* README: add link to WebAssembly version on comparch.edu.cvut.cz
11+
* CI: update GitHub actions from QtRVSim
12+
13+
-- Pavel Pisa <[email protected]> Tue, 01 Oct 2024 20:45:22 +0200
14+
115
qtmips (0.8.0-1) unstable; urgency=medium
216

317
* Debian package updated to version 0.8.0-1.

src/cli/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ bool assemble(Machine &machine, MsgReport &msgrep, QString filename) {
501501
int main(int argc, char *argv[]) {
502502
QCoreApplication app(argc, argv);
503503
QCoreApplication::setApplicationName("cli");
504-
QCoreApplication::setApplicationVersion("0.8.0");
504+
QCoreApplication::setApplicationVersion("0.8.1");
505505
set_default_log_pattern();
506506

507507
QCommandLineParser p;

0 commit comments

Comments
 (0)