From 7b32339ca3581467415f4df8e278bc39397ab9c8 Mon Sep 17 00:00:00 2001 From: Marek Date: Wed, 15 Nov 2023 20:39:46 +0100 Subject: [PATCH] update the README --- README.md | 3 ++- cocotb_coverage/__init__.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 48f55b2..cd47636 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ The implemented functionality is intended to be easily understandable by SystemV There is an option to export coverage database to a readable XML or YML format and a function which allows for merging such files is provided. ### Installation -The package can be installed with pip. Version ```1.1.0``` is the latest one and recommended. +The package can be installed with pip. Version ```1.2.0``` is the latest one and recommended. ``` pip install cocotb-coverage ``` @@ -28,6 +28,7 @@ pip install cocotb-coverage * example advanced verification project - [apbi2c_cocotb_example](https://github.com/mciepluc/apbi2c_cocotb_example) ### Roadmap +* 1.2 released - 15 Nov 2023 * 1.1 released - 7 Aug 2020 * Planned basic support for UCIS coverage database format * Any suggestions welcome - you are encouraged to open an issue! diff --git a/cocotb_coverage/__init__.py b/cocotb_coverage/__init__.py index 1a2b390..6cfc87c 100644 --- a/cocotb_coverage/__init__.py +++ b/cocotb_coverage/__init__.py @@ -1,7 +1,7 @@ import sys -__version__ = '1.2.0' +__version__ = '1.2.1dev' if sys.version_info[0] < 3: raise Exception("cocotb-coverage package requires Python 3")