Skip to content

Commit

Permalink
release 1.1!
Browse files Browse the repository at this point in the history
  • Loading branch information
mciepluc committed Aug 7, 2020
1 parent 9de4e95 commit e4b1711
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ 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.dev0``` is recommended (official release coming soon...).
The package can be installed with pip. Version ```1.1.0``` is the latest one and recommended.
```
pip install cocotb-coverage==1.1.dev0
pip install cocotb-coverage
```

### References
Expand All @@ -28,10 +28,8 @@ pip install cocotb-coverage==1.1.dev0
* example advanced verification project - [apbi2c_cocotb_example](https://github.com/mciepluc/apbi2c_cocotb_example)

### Roadmap
* Release of ```1.1.0``` planned in Q3 2020
* Planned documentation updates: adding examples and tutorials ([documentation](https://cocotb-coverage.readthedocs.io/en/latest/) is being updated continuously)
* 1.1 released - 7 Aug 2020
* Planned basic support for UCIS coverage database format
* Bug fixes and code quality improvements
* Any suggestions welcome - you are encouraged to open an issue!

### Code Example
Expand Down
2 changes: 1 addition & 1 deletion cocotb_coverage/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import sys

__version__ = '1.1.dev0'
__version__ = '1.1.0'

if sys.version_info[0] < 3:
raise Exception("cocotb-coverage package requies Python 3")

0 comments on commit e4b1711

Please sign in to comment.