diff --git a/CHANGES.md b/CHANGES.md index dd3b3af..94c2806 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,17 @@ Changelog ========= +0.8.0 +----- + +* Use pip's list of excluded default packages. This means that the + ``pipdeptree`` package itself is no longer excluded and will appear + in the output tree. + +* Fix the bug that caused a package to appear in conflicting deps + although it's installed version could be guessed. + + 0.7.0 ----- diff --git a/pipdeptree.py b/pipdeptree.py index c6265c7..877a1f3 100644 --- a/pipdeptree.py +++ b/pipdeptree.py @@ -16,7 +16,7 @@ import pip import pkg_resources -__version__ = '0.7.0' +__version__ = '0.8.0' flatten = chain.from_iterable