diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e045bf..29b8bbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.14.0] - 2022-08-08 +- Add fields to instruction object +- Enable generic coverage evaluation mechanisms for floating point instructions +- Fix coverpoint generation to account for nan boxing of fp instructions. +- Add fields(frm, fcsr, nan_prefix) for fp instructions + ## [0.13.2] - 2022-05-23 - Error reporting for missing coverlabel in cgf file diff --git a/riscv_isac/__init__.py b/riscv_isac/__init__.py index 4a02a1e..b3fa599 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.13.2' +__version__ = '0.14.0' diff --git a/setup.cfg b/setup.cfg index b5012e0..e5e72ba 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.13.2 +current_version = 0.14.0 commit = True tag = True diff --git a/setup.py b/setup.py index 00e7ce2..f2b0e32 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def read_requires(): setup( name='riscv_isac', - version='0.13.2', + version='0.14.0', description="RISC-V ISAC", long_description=readme + '\n\n', classifiers=[