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"