forked from Qiskit/rustworkx
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit prepares the 0.13.1 release, this consists of bumping the version number to 0.13.1 in all the appropriate files. It also adds a prelude release note to provide a brief introduction to the release. When this commit merges it should be tagged as the 0.13.1 release. Closes Qiskit#893
- Loading branch information
Showing
6 changed files
with
32 additions
and
19 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 = "rustworkx" | ||
description = "A python graph library implemented in Rust" | ||
version = "0.13.0" | ||
version = "0.13.1" | ||
authors = ["Matthew Treinish <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
|
@@ -33,10 +33,10 @@ ndarray-stats = "0.5.1" | |
quick-xml = "0.28" | ||
serde = { version = "1.0", features = ["derive"] } | ||
serde_json = "1.0" | ||
rustworkx-core = { path = "rustworkx-core", version = "=0.13.0" } | ||
rustworkx-core = { path = "rustworkx-core", version = "=0.13.1" } | ||
|
||
[dependencies.pyo3] | ||
version = "0.19.0" | ||
version = "0.19.1" | ||
features = ["extension-module", "hashbrown", "num-bigint", "num-complex", "indexmap"] | ||
|
||
[dependencies.hashbrown] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
prelude: > | ||
rustworkx 0.13.1 is a bugfix release, addressing some issues identified | ||
since the 0.13.0 release. | ||
issues: | ||
- | | ||
The type hint stub files included in this release (and 0.13.0) are not | ||
compatible with Python 3.7's type hinting syntax. If you are now using | ||
`mypy` to partially validate the typing in your usage of rustworkx, you | ||
should not run this with Python 3.7 as it will not function correctly. | ||
The actual rustworkx code will continue to function as expected with | ||
Python 3.7 for the 0.13.x release series, it was just the typing syntax | ||
used in the stubs files which are incompatible with Python 3.7. |
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,6 +1,6 @@ | ||
[package] | ||
name = "rustworkx-core" | ||
version = "0.13.0" | ||
version = "0.13.1" | ||
edition = "2021" | ||
authors = ["Matthew Treinish <[email protected]>"] | ||
description = "Rust APIs used for rustworkx algorithms" | ||
|
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