Skip to content

Commit

Permalink
Prepare for 2.2.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
naiquevin committed Jan 9, 2022
1 parent 1a51d65 commit 79812af
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
-----

Expand Down
5 changes: 4 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pipdeptree.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# from graphviz import parameters


__version__ = '2.2.0'
__version__ = '2.2.1'


flatten = chain.from_iterable
Expand Down

0 comments on commit 79812af

Please sign in to comment.