From 089175c7fc1bd8721a64ac29e8f22d06cab8254f Mon Sep 17 00:00:00 2001 From: Pete Grayson Date: Wed, 1 Apr 2020 18:00:32 -0400 Subject: [PATCH] Update changelog for 0.2 release --- CHANGELOG.rst | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 187703a..07bc065 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,37 @@ Changelog ========= +pyvcd-0.2.0 (2020-04-01) +------------------------ +* Breaking changes: + + * Python 3.6 is minimum version; drop Python 2 support + * Remove ident argument from VCDWriter.register_var() + +* Deprecations: + + * Enums for scope, variable, and timescale types + * Enums for GTKWave flags and colors + +* Features: + + * Inline type annotations, checkable with Mypy + * Use base-94 encoding for variable identifiers + * Improved performance + +* Repairs: + + * Repair default string variable value + * Ensure compound vector value correctness + +* Development environment changes: + + * Add top-level Makefile with targets for common commands + * Format code using black + * Format imports using isort + * Check type annotations with Mypy + * Use GitHub Actions for CI; drop Travis + pyvcd-0.1.7 (2020-01-24) ------------------------ * Repair event variable changes (#14)