Skip to content

Commit 5c8b36c

Browse files
committed
chore: bumped version to 0.11.1
1 parent 39d437f commit 5c8b36c

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# igraph Python interface changelog
22

3+
## [0.11.1] - 2023-10-12
4+
5+
### Fixed
6+
7+
- Fixed plotting of null graphs with the Matplotlib backend.
8+
39
## [0.11.0] - 2023-10-12
410

511
### Added
@@ -582,7 +588,8 @@ Please refer to the commit logs at https://github.com/igraph/python-igraph for
582588
a list of changes affecting versions up to 0.8.3. Notable changes after 0.8.3
583589
are documented above.
584590

585-
[main]: https://github.com/igraph/python-igraph/compare/0.11.0...main
591+
[main]: https://github.com/igraph/python-igraph/compare/0.11.1...main
592+
[0.11.1]: https://github.com/igraph/python-igraph/compare/0.11.0...0.11.1
586593
[0.11.0]: https://github.com/igraph/python-igraph/compare/0.10.8...0.11.0
587594
[0.10.8]: https://github.com/igraph/python-igraph/compare/0.10.7...0.10.8
588595
[0.10.7]: https://github.com/igraph/python-igraph/compare/0.10.6...0.10.7

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,7 @@ def get_tag(self):
10001000
"cairo": ["cairocffi>=1.2.0"],
10011001
# Dependencies needed for plotting with Matplotlib
10021002
"matplotlib": [
1003-
"matplotlib>=3.5.0,<3.6.0; platform_python_implementation != 'PyPy'"
1003+
"matplotlib>=3.6.0; platform_python_implementation != 'PyPy'"
10041004
],
10051005
# Dependencies needed for plotting with Plotly
10061006
"plotly": ["plotly>=5.3.0"],

src/igraph/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = (0, 11, 0)
1+
__version_info__ = (0, 11, 1)
22
__version__ = ".".join("{0}".format(x) for x in __version_info__)

0 commit comments

Comments
 (0)