From 4d19738072502cfacc05946600888b4c516da4da Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Tue, 1 Aug 2023 11:16:21 +0100 Subject: [PATCH] release 2.1.1 --- CHANGELOG.md | 6 ++++++ riscemu/__init__.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b51a0a3..bf0a510 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 2.1.1 + + - Bugfix: Allow infinite registers with more than two digits in load/store ins + - Bugfix: Fix how floating point registers are displayed in the debugger + - Bugfix: Various semantic problems in RV32F + ## 2.1.0 - Added a very basic libc containing a `crt0.s`, and a few functions diff --git a/riscemu/__init__.py b/riscemu/__init__.py index 96e7339..30ee2aa 100644 --- a/riscemu/__init__.py +++ b/riscemu/__init__.py @@ -34,4 +34,4 @@ from .parser import tokenize, parse_tokens, AssemblyFileLoader __author__ = "Anton Lydike " __copyright__ = "Copyright 2023 Anton Lydike" -__version__ = "2.0.5" +__version__ = "2.1.1"