Prepare for 2.2.1 release

This commit is contained in:
Vineet Naik 2022-01-09 11:38:49 +05:30
parent 1a51d6589c
commit 79812afc97
3 changed files with 13 additions and 2 deletions

View File

@ -1,6 +1,14 @@
Changelog
=========
2.2.1
-----
* Fix ``--user-only`` and ``--freeze`` flags which were broken after
the last release.
* Fix for compatibility with new version of ``graphviz`` (>= 0.18.1).
2.2.0
-----

View File

@ -264,7 +264,10 @@ The dependency graph can also be visualized using `GraphViz
$ pipdeptree --graph-output svg > dependencies.svg
Note that ``graphviz`` is an optional dependency ie. required only if
you want to use ``--graph-output``.
you want to use ``--graph-output``. If the version of ``graphviz``
installed in the env is older than 0.18.1, then a warning will be
displayed about upgrading ``graphviz``. Support for older versions of
graphviz will be dropped soon.
Since version ``2.0.0b1``, ``--package`` and ``--reverse`` flags are
supported for all output formats ie. text, json, json-tree and graph.

View File

@ -30,7 +30,7 @@ except ImportError:
# from graphviz import parameters
__version__ = '2.2.0'
__version__ = '2.2.1'
flatten = chain.from_iterable