Skip to content

Commit e4b1711

Browse files
committed
release 1.1!
1 parent 9de4e95 commit e4b1711

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ The implemented functionality is intended to be easily understandable by SystemV
1212
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.
1313

1414
### Installation
15-
The package can be installed with pip. Version ```1.1.dev0``` is recommended (official release coming soon...).
15+
The package can be installed with pip. Version ```1.1.0``` is the latest one and recommended.
1616
```
17-
pip install cocotb-coverage==1.1.dev0
17+
pip install cocotb-coverage
1818
```
1919

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

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

3735
### Code Example

cocotb_coverage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
import sys
33

4-
__version__ = '1.1.dev0'
4+
__version__ = '1.1.0'
55

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

0 commit comments

Comments
 (0)