Skip to content

Commit

Permalink
upversion.
Browse files Browse the repository at this point in the history
  • Loading branch information
thebjorn committed Jul 13, 2019
1 parent faad4d4 commit 7c8a7fc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ pydeps
Python module dependency visualization. This package installs the ``pydeps``
command, and normal usage will be to use it from the command line.

Version 1.7.3 includes a new flag ``-xx`` or ``--exclude-exact`` which matches the functionality of the ``--exclude`` flag,
except it requires an exact match, i.e. ``-xx foo.bar`` will exclude foo.bar, but not ``foo.bar.blob`` (thanks to
@AvenzaOleg for the PR)

Version 1.7.2 includes a new flag, ``--no-output``, which prevents creation of the .svg/.png file.

Version 1.7.1 fixes excludes in .pydeps files (thanks to @eqvis for the bugreport).
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = '1.7.2'
version = '1.7.3'
# The full version, including alpha/beta/rc tags.
release = '1.7.2'
release = '1.7.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pydeps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
Python module dependency visualization. This package installs the ``pydeps``
command, and normal usage will be to use it from the command line.
"""
__version__ = "1.7.2"
__version__ = "1.7.3"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from distutils.core import setup
from setuptools.command.test import test as TestCommand

version='1.7.2'
version='1.7.3'


class PyTest(TestCommand):
Expand Down

0 comments on commit 7c8a7fc

Please sign in to comment.