From ba20f5831f1775133067400953991093c44c87a2 Mon Sep 17 00:00:00 2001 From: Bjorn Pettersen Date: Mon, 28 Oct 2019 09:41:56 +0100 Subject: [PATCH] upversion --- docs/conf.py | 4 ++-- pydeps/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 0b5734e..e5476f8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = '1.8.2' +version = '1.8.3' # The full version, including alpha/beta/rc tags. -release = '1.8.2' +release = '1.8.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pydeps/__init__.py b/pydeps/__init__.py index 1d14c16..9f2c2c9 100644 --- a/pydeps/__init__.py +++ b/pydeps/__init__.py @@ -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.8.2" +__version__ = "1.8.3" diff --git a/setup.py b/setup.py index 2739d92..231f9b4 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ from distutils.core import setup from setuptools.command.test import test as TestCommand -version='1.8.2' +version='1.8.3' class PyTest(TestCommand):