diff --git a/CHANGELOG.md b/CHANGELOG.md index 75d30f177..b31b3d20c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # igraph Python interface changelog -## [0.11.1] - 2023-10-12 +## [0.11.2] - 2023-10-12 ### Fixed @@ -588,8 +588,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.1...main -[0.11.1]: https://github.com/igraph/python-igraph/compare/0.11.0...0.11.1 +[main]: https://github.com/igraph/python-igraph/compare/0.11.2...main +[0.11.2]: https://github.com/igraph/python-igraph/compare/0.11.0...0.11.2 [0.11.0]: https://github.com/igraph/python-igraph/compare/0.10.8...0.11.0 [0.10.8]: https://github.com/igraph/python-igraph/compare/0.10.7...0.10.8 [0.10.7]: https://github.com/igraph/python-igraph/compare/0.10.6...0.10.7 diff --git a/src/igraph/version.py b/src/igraph/version.py index 679427be8..e9509d902 100644 --- a/src/igraph/version.py +++ b/src/igraph/version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 11, 1) +__version_info__ = (0, 11, 2) __version__ = ".".join("{0}".format(x) for x in __version_info__)