From 0a153b39531c4073b70187167c236a9365a24f87 Mon Sep 17 00:00:00 2001 From: Tamas Nepusz Date: Fri, 11 Jun 2021 13:01:13 +0200 Subject: [PATCH] chore: bumped version to 0.9.5 --- doc/source/conf.py | 4 ++-- src/igraph/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index 7bb53614e..1ad803559 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -51,9 +51,9 @@ # built documents. # # The short X.Y version. -version = '0.9.4' +version = '0.9.5' # The full version, including alpha/beta/rc tags. -release = '0.9.4' +release = '0.9.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/igraph/version.py b/src/igraph/version.py index c7f87fb0d..06e50590c 100644 --- a/src/igraph/version.py +++ b/src/igraph/version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 9, 4) +__version_info__ = (0, 9, 5) __version__ = ".".join("{0}".format(x) for x in __version_info__)