-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepare 0.15.0 release This commit prepares the 0.15.0 release. It moves the release notes for the release into a separate directory and adds a prelude to the release notes. This should be the last commit to merge for the 0.15.0 release and after it merges that commit will be what is should be tagged as the 0.15.0 release. As part of this there are few small changes other changes being made. The release notes are update to have consistent formatting and wording. * Add missing release notes * Apply suggestions from code review Co-authored-by: Raynel Sanchez <87539502+raynelfss@users.noreply.github.com> * Move new release note * Reword Dorogovtsev-Goltsev-Mendes rustworkx-core release note slightly * Update releasenotes/notes/0.15/swap-nox-tox-dea2bb14c400641c.yaml * Update releasenotes/notes/0.15/prepare-0.15.0-771047bc5b71c569.yaml --------- Co-authored-by: Raynel Sanchez <87539502+raynelfss@users.noreply.github.com> Co-authored-by: Ivan Carvalho <8753214+IvanIsCoding@users.noreply.github.com>
- Loading branch information
1 parent
5829af6
commit 0d648b2
Showing
48 changed files
with
176 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions
7
releasenotes/notes/0.15/add-node-link-json-parse-ef74e5b0d97c0941.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
features: | ||
- | | ||
Added two new functions, :func:`~rustworkx.from_node_link_json_file` and | ||
:func:`~rustworkx.parse_node_link_json`, which are used to parse a node | ||
link json object and generate a rustworkx :class:`.PyGraph` or | ||
:class:`.PyDiGraph` object from it. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions
7
releasenotes/notes/0.15/collect_runs_core-13073cc7041bc2f5.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
features: | ||
- | | ||
Added a new function ``collect_runs`` to rustworkx-core's ``dag_algo`` | ||
module. Previously, the :func:`~.collect_runs` functionality for DAGs was | ||
only exposed via the Python interface. Now Rust users can take advantage of | ||
this functionality in ``rustworkx-core``. |
12 changes: 6 additions & 6 deletions
12
...connected-subgraphs-b6fd8d5e37276240.yaml → ...connected-subgraphs-b6fd8d5e37276240.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- | ||
features: | ||
- | | ||
Added a function :func:`~rustworkx.connected_subgraphs` to determine all connected subgraphs of size `k` in | ||
polynomial delay for undirected graphs. This improves upon the brute-force method by two orders of magnitude for | ||
sparse graphs such as heavy-hex, enabling addressing larger graphs and for a larger `k`. The introduced method is | ||
based on "Enumerating Connected Induced Subgraphs: Improved Delay and Experimental Comparison" by Christian | ||
Komusiewicz and Frank Sommer. In particular, the procedure `Simple` is implemented. Possible runtime improvement can | ||
Added a function :func:`~rustworkx.connected_subgraphs` to determine all connected subgraphs of size :math:`k` in | ||
polynomial delay for undirected graphs. This improves upon the brute-force method by two orders of magnitude for | ||
sparse graphs such as heavy-hex, enabling addressing larger graphs and for a larger :math:`k`. The introduced method is | ||
based on "Enumerating Connected Induced Subgraphs: Improved Delay and Experimental Comparison" by Christian | ||
Komusiewicz and Frank Sommer. In particular, the procedure ``Simple`` is implemented. Possible runtime improvement can | ||
be gained by parallelization over each recursion or by following the discussion in Lemma 4 of above work and thus | ||
implementing intermediate sets `X` and `P` more efficiently. | ||
implementing intermediate sets :math:`X` and :math:`P` more efficiently. |
File renamed without changes.
18 changes: 18 additions & 0 deletions
18
releasenotes/notes/0.15/dorogovtsev-goltsev-mendes-generator-d7fd575b693bd652.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
features: | ||
- | | ||
Added :func:`rustworkx.generators.dorogovtsev_goltsev_mendes_graph` that generates | ||
deterministic scale-free graphs using the Dorogovtsev-Goltsev-Mendes iterative procedure. | ||
.. jupyter-execute:: | ||
import rustworkx as rx | ||
from rustworkx.visualization import mpl_draw | ||
graph = rx.generators.dorogovtsev_goltsev_mendes_graph(2) | ||
mpl_draw(graph) | ||
- | | ||
Added a new function, ``rustworkx_core::generators::dorogovtsev_goltsev_mendes_graph``, to | ||
rustworkx-core that is used to generate deterministic scale-free graphs using the | ||
Dorogovtsev-Goltsev-Mendes iterative procedure. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
releasenotes/notes/0.15/fix-graphviz-draw-tooltip-3f697d71c4b79e60.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixed an issue with the :func:`.graphviz_draw` where it would not correctly | ||
escape special characters in all scenarios. This has been corrected so | ||
you can now use special characters with the function, for example: | ||
.. jupyter-execute:: | ||
import rustworkx as rx | ||
from rustworkx.visualization import graphviz_draw | ||
graphviz_draw( | ||
rx.generators.path_graph(2), | ||
node_attr_fn=lambda x: {"label": "the\nlabel", "tooltip": "the\ntooltip"}, | ||
) | ||
Fixed: `#750 <https://github.com/Qiskit/rustworkx/issues/750>`__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
releasenotes/notes/0.15/fix-mpl-draw-kargs-typing-6cf7cfde0db072d5.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixed a bug in the type hint for the :func:`~rustworkx.visualization.mpl_draw`. | ||
Previously, the type hint indicated that all ``kwargs`` were required when calling the method. The type annotation has been updated to indicate that | ||
``kwargs`` with partial arguments is allowed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions
6
releasenotes/notes/0.15/graphml-long-type-support-05e66d139e685dfe.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
fixes: | ||
- | | ||
Fixed support for handling ``Long`` type attributes from input GraphML | ||
in the :func:`~rustworkx.read_graphml` function. | ||
Fixed `#1140 <https://github.com/Qiskit/rustworkx/issues/1140>`__. |
21 changes: 21 additions & 0 deletions
21
releasenotes/notes/0.15/hyperbolic-random-graph-d85c115930d8ac08.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
features: | ||
- | | ||
Adds new random graph generator function, :func:`.hyperbolic_random_graph` | ||
to sample the hyperbolic random graph model. For example: | ||
.. jupyter-execute:: | ||
import math | ||
import rustworkx as rx | ||
from rustworkx.visualization import mpl_draw | ||
graph = rx.hyperbolic_random_graph( | ||
[[math.sinh(0.5), 0, 3.14159], [-math.sinh(1), 0, -3.14159]], | ||
2.55, | ||
None, | ||
) | ||
mpl_draw(graph) | ||
- | | ||
Adds new function to the rustworkx-core module ``rustworkx_core::generators`` | ||
``hyperbolic_random_graph()`` that samples the hyperbolic random graph model. |
File renamed without changes.
5 changes: 5 additions & 0 deletions
5
releasenotes/notes/0.15/is-semi-connected-d4176b228aa62baf.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
features: | ||
- | | ||
Added a new function, :func:`~rustworkx.is_semi_connected` which will | ||
check if a :class: `~rustworkx.PyDiGraph` object is semi-connected. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
releasenotes/notes/0.15/prepare-0.15.0-771047bc5b71c569.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
prelude: > | ||
This is a new feature release of Rustworkx that adds many new features to | ||
the library. The highlights of this release are: | ||
* An expansion of functions in rustworkx-core that previously only existed | ||
in the Python API. | ||
* Expanded graph coloring algorithms | ||
This release moves to using the `Python Stable ABI <https://docs.python.org/3.9/c-api/stable.html>`__, | ||
while this release officially supports Python 3.8 through 3.12, the published | ||
binaries should be compatible with future Python versions too. Although there | ||
is no guarantee provided about future versions. Additionally, the minimum | ||
supported Rust version for building rustworkx and more importantly | ||
rustworkx-core is now 1.70.0. Additionally, in this release the macOS arm64 | ||
platform has been promoted from :ref:`tier-4` to :ref:`tier-1`. | ||
features: | ||
- | | ||
Added two new keyword arguments, ``periodic`` an ``with_positions``, to the generator functions | ||
:func:`.hexagonal_lattice_graph` and :func:`.directed_hexagonal_lattice_graph`. If periodic is | ||
set to ``True`` the boundaries of the lattice will be joined to form a periodic grid. If the | ||
``with_positions`` argument is set to ``True`` than the data payload of all the nodes will | ||
be set to a tuple of the form ``(x, y)`` where x and y represent the node's position in the | ||
lattice. For example: | ||
.. jupyter-execute:: | ||
import rustworkx as rx | ||
from rustworkx.visualization import mpl_draw | ||
graph = rx.generators.hexagonal_lattice_graph(4, 4, periodic=True, with_positions=True) | ||
mpl_draw(graph, with_labels=True, labels=str) | ||
- | | ||
Added a new rustworkx-core function ``rustworkx_core::generators::hexagonal_lattice_graph_weighted()`` | ||
which is used to generate a hexagonal lattice graph where a callback is used to generate the node | ||
weights for each node from a tuple of the form ``(usize, usize)``. | ||
upgrade: | ||
- | | ||
The interface of the ``rustworkx_core::generators::hexagonal_lattice_graph()`` function has been | ||
changed, there is a new required boolean argument ``periodic`` which is used to indicate whether | ||
the output graph should join the bondaries of the lattice to form a periodic grid or not. This | ||
argument didn't exist in prior releases of rustworkx-core and it will need to be added when | ||
upgrading to this new release. |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
other: | ||
- | | ||
For developement of rustworkx the automated testing environment | ||
tooling used has switched from Tox to instead | ||
`Nox <https://nox.thea.codes/en/stable/>`__. This is has no impact for | ||
end users and is only relevant if you contribute code to rustworkx. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 0 additions & 6 deletions
6
releasenotes/notes/add-node-link-json-parse-ef74e5b0d97c0941.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
releasenotes/notes/dorogovtsev-goltsev-mendes-generator-d7fd575b693bd652.yaml
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
releasenotes/notes/fix-graphviz-draw-tooltip-3f697d71c4b79e60.yaml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
releasenotes/notes/fix-mpl-draw-kargs-typing-6cf7cfde0db072d5.yaml
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
releasenotes/notes/graphml-long-type-support-05e66d139e685dfe.yaml
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
releasenotes/notes/hyperbolic-random-graph-d85c115930d8ac08.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.