Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [3.21.0] - 2026-01-19
- Add unratified Ziccid extension

## [3.20.0] - 2024-07-08
- Add Sdtrig support

Expand All @@ -12,6 +16,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- allow yaml python pkg requirements to install newer versions #142
- Fixing yaml parsing issue by replacing special characters in schema_isa.yaml.


## [3.18.3] - 2024-05-28
- exclude Svnapot from march generation. fixes #178.
- log raw error messages from ruamel while loading yamls. fixes #179.
Expand Down
2 changes: 1 addition & 1 deletion riscv_config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
__version__ = '3.20.0'
__version__ = '3.21.0'
3 changes: 2 additions & 1 deletion riscv_config/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@
"Ztso",
"Zba", "Zbb", "Zbc", "Zbe", "Zbf", "Zbkb", "Zbkc", "Zbkx", "Zbm", "Zbp", "Zbpbo", "Zbr", "Zbs", "Zbt",
"Zk", "Zkn", "Zknd", "Zkne", "Zknh", "Zkr", "Zks", "Zksed", "Zksh", "Zkt",
"Zpn", "Zpsf"
"Zpn", "Zpsf",
"Ziccid"
] + Zve_extensions + Zvl_extensions

S_extensions = ['Smrnmi','Smdbltrp', 'Ssdbltrp', 'Svnapot','Svadu', 'Sddbltrp', 'Sdext', 'Sdtrig']
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.20.0
current_version = 3.21.0
commit = True
tag = True

Expand Down