Skip to content

Commit 829f875

Browse files
authored
Merge pull request #148 from ved-rivos/zimop
Add support for Zimop extension
2 parents bf8a33e + 7a1e528 commit 829f875

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

55

6+
## [3.14.3] - 2023-12-01
7+
- Add support for Zimop extension
8+
69
## [3.14.2] - 2023-12-01
710
- Add Zcmop extension.
811

@@ -18,7 +21,6 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1821
## [3.13.3] - 2023-09-23
1922
- do not assign subfield to None
2023

21-
2224
## [3.13.2] - 2023-09-20
2325
- Perform satp checks only when the CSR is accessible.
2426

riscv_config/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
from pkgutil import extend_path
22
__path__ = extend_path(__path__, __name__)
3-
__version__ = '3.14.2'
3+
__version__ = '3.14.3'
4+

riscv_config/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
] + Zvef_extensions + Zved_extensions
2222

2323
Z_extensions = [
24-
"Zicbom", "Zicbop", "Zicboz", "Zicntr", "Zicsr", "Zicond", "Zicfilp", "Zicfiss", "Zifencei", "Zihintpause", "Zihpm",
24+
"Zicbom", "Zicbop", "Zicboz", "Zicntr", "Zicsr", "Zicond", "Zicfilp", "Zicfiss", "Zifencei", "Zihintpause", "Zihpm", "Zimop",
2525
"Zmmul",
2626
"Zam", "Zabha", "Zacas",
2727
"Zca", "Zcb", "Zcf", "Zcd" , "Zcmp", "Zcmt", "Zcmop",

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 3.14.2
2+
current_version = 3.14.3
33
commit = True
44
tag = True
55

0 commit comments

Comments
 (0)