diff --git a/CHANGELOG.md b/CHANGELOG.md index 891995ccd..f787db23f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # igraph Python interface changelog -## [master] +## [0.11.5] - 2024-05-07 ### Added @@ -14,6 +14,8 @@ following up a similar change in the C core. The old name of the function is deprecated but will be kept around until at least 0.12.0. +- The C core of igraph was updated to version 0.10.12. + ## [0.11.4] ### Added @@ -635,7 +637,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.4...main +[main]: https://github.com/igraph/python-igraph/compare/0.11.5...main +[0.11.5]: https://github.com/igraph/python-igraph/compare/0.11.4...0.11.5 [0.11.4]: https://github.com/igraph/python-igraph/compare/0.11.3...0.11.4 [0.11.3]: https://github.com/igraph/python-igraph/compare/0.11.2...0.11.3 [0.11.2]: https://github.com/igraph/python-igraph/compare/0.11.0...0.11.2 diff --git a/src/igraph/version.py b/src/igraph/version.py index 4c4a3bf3a..92c6ba6fb 100644 --- a/src/igraph/version.py +++ b/src/igraph/version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 11, 4) +__version_info__ = (0, 11, 5) __version__ = ".".join("{0}".format(x) for x in __version_info__)