Skip to content

Commit

Permalink
Merge branch 'master' into zicfiss_zicfilp
Browse files Browse the repository at this point in the history
Signed-off-by: Neel Gala <[email protected]>
  • Loading branch information
neelgala authored Dec 1, 2023
2 parents e7a7cba + b082a8d commit 266a727
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPIPASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload dist/* --verbose
- name: Extract release notes
id: extract-release-notes
Expand Down
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

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

## [3.13.5] - 2023-11-22
## [3.14.1] - 2023-12-01
- Add support for Zicfilp and Zicfiss extensions

## [3.13.4] - 2023-10-30
- Add support for Zabha extension
## [3.14.0] - 2023-11-30
- Include Sdext in the list of S extensions

## [3.13.4] - 2023-10-30
- Add support for Zabha extension
Expand Down
3 changes: 2 additions & 1 deletion riscv_config/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
__version__ = '3.13.5'
__version__ = '3.14.1'

2 changes: 1 addition & 1 deletion riscv_config/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"Zpn", "Zpsf"
] + Zve_extensions + Zvl_extensions

S_extensions = ['Smrnmi','Svnapot','Svadu']
S_extensions = ['Smrnmi','Svnapot','Svadu', 'Sdext']

sub_extensions = Z_extensions + S_extensions

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.13.5
current_version = 3.14.1
commit = True
tag = True

Expand Down

0 comments on commit 266a727

Please sign in to comment.