From 19b9f96ea21720048cede2a539886ad1f4be4699 Mon Sep 17 00:00:00 2001 From: Ved Shanbhogue Date: Sun, 7 Jan 2024 12:15:38 -0600 Subject: [PATCH] add zaamo and zalrsc extensions --- 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 76569e0..b3d0a97 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.16.2] - 2024-01-07 + - Add Zaamo and Zalrsc extensions + ## [3.16.0] - 2024-01-03 - use the "hartX" naming for the merged dict - improve logging statements diff --git a/riscv_config/__init__.py b/riscv_config/__init__.py index dfbbd6a..8803408 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.16.0' +__version__ = '3.16.2' diff --git a/riscv_config/constants.py b/riscv_config/constants.py index ab410aa..609d4e7 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", "Zaamo", "Zabha", "Zacas", "Zalrsc", "Zca", "Zcb", "Zcf", "Zcd" , "Zcmp", "Zcmt", "Zcmop", "Zfh", "Zfa", "Zfinx", "Zdinx", "Zhinx", "Zhinxmin", diff --git a/setup.cfg b/setup.cfg index 24483d1..bcdc23c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.16.0 +current_version = 3.16.2 commit = True tag = True