diff --git a/CHANGES.rst b/CHANGES.rst index 6a259a8c5f..a4859d614a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,12 @@ Changelog ========= +Version 0.20.3 (in development) +------------------------------- + + + + Version 0.20.2 -------------- diff --git a/docs/conf.py b/docs/conf.py index 61d193f0ab..fcfbbbb651 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.2' +release = '0.20.3.dev0' # -- General configuration --------------------------------------------------- diff --git a/graphviz/__init__.py b/graphviz/__init__.py index 3b5bbf4a88..66888b44e0 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.2' +__version__ = '0.20.3.dev0' __author__ = 'Sebastian Bank ' __license__ = 'MIT, see LICENSE.txt' __copyright__ = 'Copyright (c) 2013-2024 Sebastian Bank' diff --git a/setup.py b/setup.py index a397a433b1..cd460a1875 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='graphviz', - version='0.20.2', + version='0.20.3.dev0', author='Sebastian Bank', author_email='sebastian.bank@uni-leipzig.de', description='Simple Python interface for Graphviz',