From d1023762124ea5fb961476126a0e2f8d6bb79e33 Mon Sep 17 00:00:00 2001 From: Anton Lydike Date: Tue, 1 Aug 2023 11:21:15 +0100 Subject: [PATCH] release 2.1.1 --- CHANGELOG.md | 8 +++++++- riscemu/__init__.py | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9c3600..f044334 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,12 @@ # Changelog -## Upcoming 2.1.0 +## 2.1.1 + + - Bugfix: Fix some errors in the RV32F implementation (thanks @adutilleul) + - Bugfix: Fix how floats are printed in the register view (thanks @KGrykiel) + - Bugfix: Fix missing support for infinite registers in load/store ins (thanks @superlopuh) + +## 2.1.0 - Added a very basic libc containing a `crt0.s`, and a few functions such as `malloc`, `rand`, and `memcpy`. diff --git a/riscemu/__init__.py b/riscemu/__init__.py index ba96eb1..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.1.0" +__version__ = "2.1.1"