-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Prepare 0.10.2 release This commit prepares for a 0.10.2 bugfix release to get the recent vf2 bugfixes on main out in the wild. Looking at the git log since 0.10.1 we've only merged fixes and requirements bumps since the release, so now is a good time to push out the bugfix release before we start merging new features. * Update deps * Fix release note syntax * Update releasenotes/notes/0.10.2/prepare-0.10.2-d75b2d86be66a6d9.yaml Co-authored-by: georgios-ts <[email protected]> * Move new release note * Minor rewording in prelude * Improve betweenness centrality release note Reviewing the release notes for this pending release I noticed that the release note for the betweenness centrality function was a bit lacking. This commit updates it to include more details and example using and visualizing it. Reno lets us edit existing release notes like this because it associates the file creation in the git history with the tag so subsequent edits of existing note files are still under the correct release. * Fix release note typo * Tweak betweenness centrality release note a bit more * Another typo fix * Move new release notes
- Loading branch information
Showing
10 changed files
with
72 additions
and
26 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "retworkx" | ||
description = "A python graph library implemented in Rust" | ||
version = "0.11.0" | ||
version = "0.10.2" | ||
authors = ["Matthew Treinish <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
|
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.
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.
8 changes: 8 additions & 0 deletions
8
releasenotes/notes/0.10.2/prepare-0.10.2-d75b2d86be66a6d9.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,8 @@ | ||
--- | ||
prelude: > | ||
This release is a bugfix release that fixes some issues found since the 0.10.1 | ||
release. The fixes in this release are primarily in the vf2 implementation | ||
and most importantly fixes the output of :func:`~retworkx.vf2_mapping` with | ||
an empty input graph and the output of :func:`~retworkx.vf2_mapping`, | ||
:func:`~retworkx.is_isomorphic`, and :func:`~retworkx.is_subgraph_isomorphic` | ||
with graphs that have parallel edges. |
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