From 594db83df5e455686cb616bec78366479fd0bb34 Mon Sep 17 00:00:00 2001 From: Ved Shanbhogue Date: Sun, 28 Jan 2024 18:02:09 -0600 Subject: [PATCH] add zawrs 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 2966ba1..baa1453 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.17.1] - 2024-01-28 + - Add Zawrs extension + ## [3.17.0] - 2024-01-09 - support march generation without custom extensions diff --git a/riscv_config/__init__.py b/riscv_config/__init__.py index 9eb8981..b752767 100644 --- a/riscv_config/__init__.py +++ b/riscv_config/__init__.py @@ -1,4 +1,4 @@ from pkgutil import extend_path __path__ = extend_path(__path__, __name__) -__version__ = '3.17.0' +__version__ = '3.17.1' diff --git a/riscv_config/constants.py b/riscv_config/constants.py index ab410aa..ad227fd 100644 --- a/riscv_config/constants.py +++ b/riscv_config/constants.py @@ -23,7 +23,7 @@ Z_extensions = [ "Zicbom", "Zicbop", "Zicboz", "Zicntr", "Zicsr", "Zicond", "Zicfilp", "Zicfiss", "Zifencei", "Zihintpause", "Zihpm", "Zimop", "Zmmul", - "Zam", "Zabha", "Zacas", + "Zam", "Zabha", "Zacas", "Zawrs", "Zca", "Zcb", "Zcf", "Zcd" , "Zcmp", "Zcmt", "Zcmop", "Zfh", "Zfa", "Zfinx", "Zdinx", "Zhinx", "Zhinxmin", diff --git a/setup.cfg b/setup.cfg index d521827..fa73987 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.17.0 +current_version = 3.17.1 commit = True tag = True