From a93d0d1381825058f8138db74ff505b1aa0b482f Mon Sep 17 00:00:00 2001 From: Olof Kraigher Date: Tue, 4 Dec 2018 19:54:39 +0100 Subject: [PATCH] Release 4.0.8 --- docs/release_notes/4.0.8.rst | 5 +++++ setup.py | 1 + vunit/about.py | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 docs/release_notes/4.0.8.rst diff --git a/docs/release_notes/4.0.8.rst b/docs/release_notes/4.0.8.rst new file mode 100644 index 000000000..110bbc3a2 --- /dev/null +++ b/docs/release_notes/4.0.8.rst @@ -0,0 +1,5 @@ +- Fix vivado submodule missing from release. :vunit_issue:`415` +- Add support for checking AXI response in axi_lite_master +- Fix bug with coverage flag not working with unique-sim in rivierapro +- Support for Avalon-MM burst transfers +- Unsure LICENSE_QUEUE environment variable is in effect for RivieraPRO diff --git a/setup.py b/setup.py index 023451398..0566a6aed 100644 --- a/setup.py +++ b/setup.py @@ -43,6 +43,7 @@ def find_all_files(directory, endings=None): 'vunit.test', 'vunit.parsing', 'vunit.parsing.verilog', + 'vunit.vivado', 'vunit.test.lint', 'vunit.test.unit', 'vunit.test.acceptance'], diff --git a/vunit/about.py b/vunit/about.py index 41be8d011..fcd2ed7d6 100644 --- a/vunit/about.py +++ b/vunit/about.py @@ -68,7 +68,7 @@ def version(): return '%i.%i.%i' % (VERSION[0], VERSION[1], VERSION[2]) -VERSION = (4, 0, 7) +VERSION = (4, 0, 8) # DO NOT TOUCH: Only set to False by PyPI deployment script PRE_RELEASE = True