From 720cc7410e0e719a5d391f006a48459939754c67 Mon Sep 17 00:00:00 2001 From: Yung-Ching Hsiao Date: Wed, 9 Feb 2022 17:47:02 +0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.10.0=20=E2=86=92=200.10.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 +++++ riscv_isac/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e42aae3..7d6ef1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.10.1] - 2022-02-10 +- Added vxsat to supported csr_regs +- Added comments to coverpoint functions for P-ext +- Removed unused tuple type for bit_width parameters in P-ext coverpoint functions + ## [0.10.0] - 2022-01-27 - Added support for instructions from B extension. - Bug fix for bgeu instruction. diff --git a/riscv_isac/__init__.py b/riscv_isac/__init__.py index d269694..d9a16fc 100644 --- a/riscv_isac/__init__.py +++ b/riscv_isac/__init__.py @@ -4,4 +4,4 @@ __author__ = """InCore Semiconductors Pvt Ltd""" __email__ = 'info@incoresemi.com' -__version__ = '0.10.0' +__version__ = '0.10.1' diff --git a/setup.cfg b/setup.cfg index 193b68f..9021e1a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.0 +current_version = 0.10.1 commit = True tag = True diff --git a/setup.py b/setup.py index 4505fd5..86c2f8a 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def read_requires(): setup( name='riscv_isac', - version='0.10.0', + version='0.10.1', description="RISC-V ISAC", long_description=readme + '\n\n', classifiers=[