From 6a2db82e21c4ca0f7d1646df42e9ef50f0ec51b4 Mon Sep 17 00:00:00 2001 From: Tim Harder Date: Fri, 13 Sep 2019 11:21:13 -0600 Subject: [PATCH] update news and bump version --- NEWS.rst | 29 +++++++++++++++++++++++++++++ src/pkgcheck/__init__.py | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/NEWS.rst b/NEWS.rst index 394293388..90b619da3 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,35 @@ Release Notes ============= +--------------------------- +pkgcheck 0.6.4 (2019-09-13) +--------------------------- + +- Add FormatReporter supporting custom format string output. + +- pkgcheck scan: Drop --metadata-xsd-required option since the related file is + now bundled with pkgcore. + +- Add CsvReporter for outputting results in CSV format. + +- pkgcheck scan: Add --commits option that use local git repo changes to + determine scan targets. + +- DroppedUnstableKeywords: Disregard when stable target keywords exist. + +- LocalUSECheck: Add test for USE flags with reserved underscore character. + +- PathVariablesCheck: Drop 'into' from prefixed dir functions list to avoid + false positives in comments. + +- MissingUnpackerDepCheck: Drop checks for jar files since most are being + directly installed and not unpacked. + +- Make gentoo repo checks work for external gentoo repos on systems with a + configured gentoo system repo. + +- UnknownFile: Flag unknown files in package directories for the gentoo repo. + --------------------------- pkgcheck 0.6.3 (2019-08-30) --------------------------- diff --git a/src/pkgcheck/__init__.py b/src/pkgcheck/__init__.py index a7f92137e..28750856a 100644 --- a/src/pkgcheck/__init__.py +++ b/src/pkgcheck/__init__.py @@ -1,2 +1,2 @@ __title__ = 'pkgcheck' -__version__ = '0.6.3' +__version__ = '0.6.4'