From 07d9f7b88001eec0c60e5b741de0fbabffab08b1 Mon Sep 17 00:00:00 2001 From: 1138-4EB <1138-4EB@users.noreply.github.com> Date: Sat, 30 Nov 2019 03:21:59 +0100 Subject: [PATCH] Release 4.3.0 --- docs/release_notes/4.3.0.rst | 9 +++++++++ vunit/about.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 docs/release_notes/4.3.0.rst diff --git a/docs/release_notes/4.3.0.rst b/docs/release_notes/4.3.0.rst new file mode 100644 index 000000000..a6bb63f62 --- /dev/null +++ b/docs/release_notes/4.3.0.rst @@ -0,0 +1,9 @@ +- Fix broken ``vhdl_standard`` setting in some situations. :vunit_issue:`594` +- Add 'external modes' (VHPIDIRECT) to ``string_ptr`` and ``integer_vector_ptr``; add ``byte_vector_prt`` too. :vunit_issue:`507` :vunit_issue:`476` +- Add report data to ``Results`` object/class. :vunit_issue:`586` +- Use a Python formatter: `psf/black `_. :vunit_issue:`554` +- Refactor ``vunit/ui``, ``vunit/sim_if``, ``vunit/test`` and ``tests``. :vunit_issue:`572` :vunit_issue:`582` +- Deprecate ``array_pkg``. It will be removed in future releases. Use :ref:`integer_array_pkg` instead. :vunit_issue:`593` +- Python 3.4 reached End-of-life in 2019-03-18 and it is no longer tested. Support is expected to break in future releases. +- Add support for Python 3.8. +- Deprecate Python 2.7. This is the last release supporting Python 2 and Python 3. Upcoming releases will be for Python 3 only. diff --git a/vunit/about.py b/vunit/about.py index 2d8f27ccc..ff2dd91fa 100644 --- a/vunit/about.py +++ b/vunit/about.py @@ -68,4 +68,4 @@ def version(): return VERSION -VERSION = "4.2.0" +VERSION = "4.3.0"