From 54b4eecd0f2cc2ac356943ecc1f042abb6e627d2 Mon Sep 17 00:00:00 2001 From: Sebastian Bank Date: Thu, 24 Dec 2020 17:15:51 +0100 Subject: [PATCH] release 0.16 --- CHANGES.txt | 4 ++-- docs/conf.py | 2 +- graphviz/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index a1b5ab970e..6728f33757 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -2,8 +2,8 @@ Changelog ========= -Version 0.16 (in development) ------------------------------ +Version 0.16 +------------ Add ``.unflatten()`` method to ``Graph``, ``Digraph``, and ``Source``. Add standalone ``unflatten()``. diff --git a/docs/conf.py b/docs/conf.py index 45fdabef45..ca608b3a6d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ author = 'Sebastian Bank' # The short X.Y version -version = '0.16.dev0' +version = '0.16' # The full version, including alpha/beta/rc tags release = version diff --git a/graphviz/__init__.py b/graphviz/__init__.py index 5d8f8f4000..33cc6170ff 100644 --- a/graphviz/__init__.py +++ b/graphviz/__init__.py @@ -39,7 +39,7 @@ 'ExecutableNotFound', 'RequiredArgumentError'] __title__ = 'graphviz' -__version__ = '0.16.dev0' +__version__ = '0.16' __author__ = 'Sebastian Bank ' __license__ = 'MIT, see LICENSE.txt' __copyright__ = 'Copyright (c) 2013-2020 Sebastian Bank' diff --git a/setup.py b/setup.py index 0ef795863f..f0c27ed971 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='graphviz', - version='0.16.dev0', + version='0.16', author='Sebastian Bank', author_email='sebastian.bank@uni-leipzig.de', description='Simple Python interface for Graphviz',