|
7 | 7 | - Dropped support for Python 3.8 as it has now reached its end of life. |
8 | 8 |
|
9 | 9 | - The C core of igraph was updated to version 0.10.15. |
| 10 | + |
10 | 11 | - Added `Graph.simple_cycles()` to find simple cycles in the graph. |
11 | 12 |
|
12 | 13 | ## [0.11.8] - 2024-10-25 |
|
44 | 45 |
|
45 | 46 | ### Added |
46 | 47 |
|
47 | | - - Added `Graph.Hypercube()` for creating n-dimensional hypercube graphs. |
| 48 | +- Added `Graph.Hypercube()` for creating n-dimensional hypercube graphs. |
48 | 49 |
|
49 | | - - Added `Graph.Chung_Lu()` for sampling from the Chung-Lu model as well as |
| 50 | +- Added `Graph.Chung_Lu()` for sampling from the Chung-Lu model as well as |
50 | 51 | several related models. |
51 | 52 |
|
52 | | - - Added `Graph.is_complete()` to test if there is a connection between all |
| 53 | +- Added `Graph.is_complete()` to test if there is a connection between all |
53 | 54 | distinct pairs of vertices. |
54 | 55 |
|
55 | | - - Added `Graph.is_clique()` to test if a set of vertices forms a clique. |
| 56 | +- Added `Graph.is_clique()` to test if a set of vertices forms a clique. |
56 | 57 |
|
57 | | - - Added `Graph.is_independent_vertex_set()` to test if some vertices form an |
| 58 | +- Added `Graph.is_independent_vertex_set()` to test if some vertices form an |
58 | 59 | independent set. |
59 | 60 |
|
60 | | - - Added `Graph.mean_degree()` for a convenient way to compute the average |
| 61 | +- Added `Graph.mean_degree()` for a convenient way to compute the average |
61 | 62 | degree of a graph. |
62 | 63 |
|
63 | 64 | ### Changed |
64 | 65 |
|
65 | | - - The C core of igraph was updated to version 0.10.13. |
| 66 | +- The C core of igraph was updated to version 0.10.13. |
66 | 67 |
|
67 | | - - `Graph.rewire()` now attempts to perform edge swaps 10 times the number of |
| 68 | +- `Graph.rewire()` now attempts to perform edge swaps 10 times the number of |
68 | 69 | edges by default. |
69 | 70 |
|
70 | | - - Error messages issued when an attribute is not found now mention the name |
| 71 | +- Error messages issued when an attribute is not found now mention the name |
71 | 72 | and type of that attribute. |
72 | 73 |
|
73 | 74 | ## [0.11.5] - 2024-05-07 |
|
88 | 89 |
|
89 | 90 | - Deprecated `PyCObject` API calls in the C code were replaced by calls to |
90 | 91 | `PyCapsule`, thanks to @DavidRConnell in |
91 | | - https://github.com/igraph/python-igraph/pull/763 |
| 92 | + <https://github.com/igraph/python-igraph/pull/763> |
92 | 93 |
|
93 | 94 | - `get_shortest_path()` documentation was clarified by @JDPowell648 in |
94 | | - https://github.com/igraph/python-igraph/pull/764 |
| 95 | + <https://github.com/igraph/python-igraph/pull/764> |
95 | 96 |
|
96 | 97 | - It is now possible to link to an existing igraph C core on MSYS2, thanks to |
97 | | - @Kreijstal in https://github.com/igraph/python-igraph/pull/770 |
| 98 | + @Kreijstal in <https://github.com/igraph/python-igraph/pull/770> |
98 | 99 |
|
99 | 100 | ### Fixed |
100 | 101 |
|
101 | 102 | - Bugfix in the NetworkX graph conversion code by @rmmaf in |
102 | | - https://github.com/igraph/python-igraph/pull/767 |
| 103 | + <https://github.com/igraph/python-igraph/pull/767> |
103 | 104 |
|
104 | 105 | ## [0.11.4] |
105 | 106 |
|
|
720 | 721 | ## [0.8.3] |
721 | 722 |
|
722 | 723 | This is the last released version of `python-igraph` without a changelog file. |
723 | | -Please refer to the commit logs at https://github.com/igraph/python-igraph for |
| 724 | +Please refer to the commit logs at <https://github.com/igraph/python-igraph> for |
724 | 725 | a list of changes affecting versions up to 0.8.3. Notable changes after 0.8.3 |
725 | 726 | are documented above. |
726 | 727 |
|
|
0 commit comments