From 84b8a016a24fbf22f254423e5f7ef6ad6d7b9546 Mon Sep 17 00:00:00 2001 From: Ved Shanbhogue Date: Mon, 30 Oct 2023 09:24:03 -0500 Subject: [PATCH] Add Zabha extension --- CHANGELOG.md | 3 +++ riscv_config/__init__.py | 2 +- riscv_config/constants.py | 2 +- setup.cfg | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdc5223..3d534a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.13.4] - 2023-10-30 + - Add support for Zabha extension + ## [3.13.3] - 2023-09-23 - do not assign subfield to None diff --git a/riscv_config/__init__.py b/riscv_config/__init__.py index b544c8d..36b21ff 100644 --- a/riscv_config/__init__.py +++ b/riscv_config/__init__.py @@ -1,3 +1,3 @@ from pkgutil import extend_path __path__ = extend_path(__path__, __name__) -__version__ = '3.13.3' \ No newline at end of file +__version__ = '3.13.4' diff --git a/riscv_config/constants.py b/riscv_config/constants.py index 147559f..88aa613 100644 --- a/riscv_config/constants.py +++ b/riscv_config/constants.py @@ -23,7 +23,7 @@ Z_extensions = [ "Zicbom", "Zicbop", "Zicboz", "Zicntr", "Zicsr", "Zicond", "Zifencei", "Zihintpause", "Zihpm", "Zmmul", - "Zam", "Zacas", + "Zam", "Zabha", "Zacas", "Zca", "Zcb", "Zcf", "Zcd" , "Zcmp", "Zcmt", "Zfh", "Zfa", "Zfinx", "Zdinx", "Zhinx", "Zhinxmin", diff --git a/setup.cfg b/setup.cfg index 5f97967..f50e20b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.13.3 +current_version = 3.13.4 commit = True tag = True