From 1a9ebd130c029677aff37fd9d8733f4685a7d9a9 Mon Sep 17 00:00:00 2001 From: Sebastian Bank Date: Sat, 23 Jul 2022 13:20:40 +0200 Subject: [PATCH] release 0.20.1 --- CHANGES.rst | 6 ++++-- docs/conf.py | 2 +- graphviz/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index abc41a4a5e..107c917a97 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,10 +2,12 @@ Changelog ========= -Version 0.20.1 (in development) -------------------------------- +Version 0.20.1 +-------------- +Fix documentation building: upgrade to Sphinx 5.0. +Fix broken user guide links in API documentation. Version 0.20 diff --git a/docs/conf.py b/docs/conf.py index b1776c5676..2609c095c9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = 'Sebastian Bank' # The full version, including alpha/beta/rc tags -release = '0.20.1.dev0' +release = '0.20.1' # -- General configuration --------------------------------------------------- diff --git a/graphviz/__init__.py b/graphviz/__init__.py index 78971e8d2f..223e82c747 100644 --- a/graphviz/__init__.py +++ b/graphviz/__init__.py @@ -56,7 +56,7 @@ 'set_default_engine', 'set_default_format', 'set_jupyter_format'] __title__ = 'graphviz' -__version__ = '0.20.1.dev0' +__version__ = '0.20.1' __author__ = 'Sebastian Bank ' __license__ = 'MIT, see LICENSE.txt' __copyright__ = 'Copyright (c) 2013-2022 Sebastian Bank' diff --git a/setup.py b/setup.py index c7439de7a6..77f44e96f1 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='graphviz', - version='0.20.1.dev0', + version='0.20.1', author='Sebastian Bank', author_email='sebastian.bank@uni-leipzig.de', description='Simple Python interface for Graphviz',