From af89844a317144ba06da27512cabb0ca1b7b9fdf Mon Sep 17 00:00:00 2001 From: Karthik B K Date: Thu, 30 Nov 2023 10:56:23 +0530 Subject: [PATCH 1/6] constants: include Sdext in S extensions --- riscv_config/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riscv_config/constants.py b/riscv_config/constants.py index 88aa613..87d8263 100644 --- a/riscv_config/constants.py +++ b/riscv_config/constants.py @@ -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 From e39ec9d5d9ed996304bf8c4a512ef0a2bc7af9ab Mon Sep 17 00:00:00 2001 From: Karthik B K Date: Thu, 30 Nov 2023 10:56:55 +0530 Subject: [PATCH 2/6] update changelog. --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d534a1..bc97c4c 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.13.5] - 2023-11-30 + - Include Sdext in the list of S extensions + ## [3.13.4] - 2023-10-30 - Add support for Zabha extension From 1aee3ca62717ee07d444d3eba2ee63c57718d643 Mon Sep 17 00:00:00 2001 From: Karthik B K Date: Thu, 30 Nov 2023 10:57:04 +0530 Subject: [PATCH 3/6] =?UTF-8?q?Bump=20version:=203.13.4=20=E2=86=92=203.13?= =?UTF-8?q?.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- riscv_config/__init__.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/riscv_config/__init__.py b/riscv_config/__init__.py index 36b21ff..1924f62 100644 --- a/riscv_config/__init__.py +++ b/riscv_config/__init__.py @@ -1,3 +1,3 @@ from pkgutil import extend_path __path__ = extend_path(__path__, __name__) -__version__ = '3.13.4' +__version__ = '3.13.5' diff --git a/setup.cfg b/setup.cfg index f50e20b..bef60cc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.13.4 +current_version = 3.13.5 commit = True tag = True From dddac46bc13abfb9a61a25c890975a9a8f62ed3e Mon Sep 17 00:00:00 2001 From: Karthik B K Date: Thu, 30 Nov 2023 11:29:00 +0530 Subject: [PATCH 4/6] =?UTF-8?q?Bump=20version:=203.13.5=20=E2=86=92=203.14?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- riscv_config/__init__.py | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/riscv_config/__init__.py b/riscv_config/__init__.py index 1924f62..fe0d67e 100644 --- a/riscv_config/__init__.py +++ b/riscv_config/__init__.py @@ -1,3 +1,3 @@ from pkgutil import extend_path __path__ = extend_path(__path__, __name__) -__version__ = '3.13.5' +__version__ = '3.14.0' diff --git a/setup.cfg b/setup.cfg index bef60cc..fcf0cc2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.13.5 +current_version = 3.14.0 commit = True tag = True From 4951979f1047acbcd424517142272b3c855e72bc Mon Sep 17 00:00:00 2001 From: Karthik B K Date: Thu, 30 Nov 2023 11:29:47 +0530 Subject: [PATCH 5/6] fix version number in changelog. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc97c4c..06c7997 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [3.13.5] - 2023-11-30 +## [3.14.0] - 2023-11-30 - Include Sdext in the list of S extensions ## [3.13.4] - 2023-10-30 From de9ec81f9f3de3fb1440b025dcbf722ef51378f8 Mon Sep 17 00:00:00 2001 From: Neel Gala Date: Thu, 30 Nov 2023 16:37:30 +0530 Subject: [PATCH 6/6] Update main.yml to print a verbose log Signed-off-by: Neel Gala --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fdd5f2c..f3cd965 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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