-
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.1 release This commit prepares for a 0.15.1 release to fix an inadvertant breaking api change in graphviz_draw() that is causing issues for existing users of the visualizer. * Release note fixes * Fix typos in 0.15.0 release notes This commit fixes typos in the 0.15.0 release notes that were missed during that release. While technically unrelated to preparing 0.15.1 this is a good opportunity to fix them since we'll be rebuilding the docs as part of the new release. * Fix spelling in prelude * Apply suggestions from code review Co-authored-by: Jake Lishman <jake@binhbar.com> * Move new release notes --------- Co-authored-by: Jake Lishman <jake@binhbar.com>
- Loading branch information
1 parent
af5a6ba
commit 312a70b
Showing
8 changed files
with
84 additions
and
71 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
10 changes: 6 additions & 4 deletions
10
releasenotes/notes/0.15/add-layers-rustworkx-core-1caaccb1ca292ca8.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,11 +1,13 @@ | ||
--- | ||
features: | ||
- | | ||
Added a function ``~rustworkx_core.dag_algo::layers`` in rustworkx-core to | ||
get the layers of a directed acyclic graph. This is equivalent to the | ||
Added a new function ``rustworkx_core::dag_algo::layers`` to rustworkx-core | ||
to get the layers of a directed acyclic graph. This is equivalent to the | ||
:func:`.layers` function that existed in the Python API but now exposes it | ||
for Rust users too. | ||
fix: | ||
- | | ||
When calling ``~rustworkx_core.dag_algo::layers``if the provided graph has | ||
a cycle, the function will throw a ``DAGHasCycle`` error instance. | ||
When calling :func:`~.layers` with a graph containing a cycle, the | ||
function will throw a ``DAGHasCycle`` error instance now. Previously, the | ||
function would get stuck in an infinite loop if a graph with a cycle was | ||
passed to the function. |
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,4 @@ | ||
--- | ||
prelude: > | ||
This release is a bugfix patch release that fixes an inadvertent breaking | ||
API change for the :func:`.graphviz_draw` function in the 0.15.0 release. |
Oops, something went wrong.