From aa06e1888833b1301121c173a71c1e3ed8f9a1a9 Mon Sep 17 00:00:00 2001 From: Pavel Pisa Date: Tue, 1 Oct 2024 23:02:12 +0200 Subject: [PATCH] Release: update version to 0.8.1 Signed-off-by: Pavel Pisa --- CMakeLists.txt | 2 +- extras/packaging/deb/debian/changelog | 14 ++++++++++++++ src/cli/main.cpp | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e4ba6676b..1173be737 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_policy(VERSION 3.10) project(QtMips LANGUAGES C CXX - VERSION 0.8.0 + VERSION 0.8.1 DESCRIPTION "MIPS CPU simulator for education purposes") set(KAREL_KOCI "Karel Koci ") diff --git a/extras/packaging/deb/debian/changelog b/extras/packaging/deb/debian/changelog index 46705361c..ba84cb7b6 100644 --- a/extras/packaging/deb/debian/changelog +++ b/extras/packaging/deb/debian/changelog @@ -1,3 +1,17 @@ +qtmips (0.8.1-1) unstable; urgency=medium + + * Machine: LRU cache policy fix + * Machine: correct cache graphics visualization for byte accesses. + * CI: release.yml - fix apt install + * Machine: correct and refactor unaligned access to peripheries + * Machine: add memory access helper for access with granularity 16-bits. + * Machine: fix LCD display endianness. + * Packaging: fix Fedora build according to Jan Grulich advice. + * README: add link to WebAssembly version on comparch.edu.cvut.cz + * CI: update GitHub actions from QtRVSim + + -- Pavel Pisa Tue, 01 Oct 2024 20:45:22 +0200 + qtmips (0.8.0-1) unstable; urgency=medium * Debian package updated to version 0.8.0-1. diff --git a/src/cli/main.cpp b/src/cli/main.cpp index 86cba5e1e..bdf16811e 100644 --- a/src/cli/main.cpp +++ b/src/cli/main.cpp @@ -501,7 +501,7 @@ bool assemble(Machine &machine, MsgReport &msgrep, QString filename) { int main(int argc, char *argv[]) { QCoreApplication app(argc, argv); QCoreApplication::setApplicationName("cli"); - QCoreApplication::setApplicationVersion("0.8.0"); + QCoreApplication::setApplicationVersion("0.8.1"); set_default_log_pattern(); QCommandLineParser p;