From f8bce2242f9c47f5428a7354ce9ff6a693eacb29 Mon Sep 17 00:00:00 2001 From: Olof Kraigher Date: Sat, 12 Oct 2019 18:59:48 +0200 Subject: [PATCH] Release 4.2.0 --- docs/release_notes/4.2.0.rst | 5 +++++ vunit/about.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 docs/release_notes/4.2.0.rst diff --git a/docs/release_notes/4.2.0.rst b/docs/release_notes/4.2.0.rst new file mode 100644 index 000000000..40df866e5 --- /dev/null +++ b/docs/release_notes/4.2.0.rst @@ -0,0 +1,5 @@ +- Add ``-m/--minimal`` flag to only compile what is necessary for selected tests. +- Fix axi_stream VC for 0-length tid/tdest/tuser. +- Fix work reference for non-lower case library names. :vunit_issue:`556` +- Add ``init_files.before_run`` hook to RivieraPRO and ModelSim. +- Do not add extra quotes when invoking a gtkwave subprocess. :vunit_issue:`563` diff --git a/vunit/about.py b/vunit/about.py index 9e049cacc..0f68f32ac 100644 --- a/vunit/about.py +++ b/vunit/about.py @@ -68,6 +68,6 @@ def version(): return '%i.%i.%i' % (VERSION[0], VERSION[1], VERSION[2]) -VERSION = (4, 1, 1) +VERSION = (4, 2, 0) PRE_RELEASE = True