From 9017167366ec4b4a06beb2725276f034e5435260 Mon Sep 17 00:00:00 2001 From: Tamas Nepusz Date: Fri, 25 Oct 2024 10:39:47 +0200 Subject: [PATCH] chore: bumped version to 0.11.8 --- CHANGELOG.md | 10 +++++++++- src/igraph/version.py | 2 +- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2aebb80bc..f040f80ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # igraph Python interface changelog +## [0.11.8] - 2024-10-25 + +### Fixed + +- Fixed documentation build on Read The Docs. No other changes compared to + 0.11.7. + ## [0.11.7] - 2024-10-24 ### Added @@ -706,7 +713,8 @@ Please refer to the commit logs at https://github.com/igraph/python-igraph for a list of changes affecting versions up to 0.8.3. Notable changes after 0.8.3 are documented above. -[main]: https://github.com/igraph/python-igraph/compare/0.11.7...main +[main]: https://github.com/igraph/python-igraph/compare/0.11.8...main +[0.11.8]: https://github.com/igraph/python-igraph/compare/0.11.7...0.11.8 [0.11.7]: https://github.com/igraph/python-igraph/compare/0.11.6...0.11.7 [0.11.6]: https://github.com/igraph/python-igraph/compare/0.11.5...0.11.6 [0.11.5]: https://github.com/igraph/python-igraph/compare/0.11.4...0.11.5 diff --git a/src/igraph/version.py b/src/igraph/version.py index 129b73173..81a2aa780 100644 --- a/src/igraph/version.py +++ b/src/igraph/version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 11, 7) +__version_info__ = (0, 11, 8) __version__ = ".".join("{0}".format(x) for x in __version_info__)