diff --git a/Cargo.lock b/Cargo.lock index 8677c62ce..a442fb972 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -593,7 +593,7 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustworkx" -version = "0.14.1" +version = "0.14.2" dependencies = [ "ahash", "fixedbitset", @@ -619,7 +619,7 @@ dependencies = [ [[package]] name = "rustworkx-core" -version = "0.14.1" +version = "0.14.2" dependencies = [ "ahash", "fixedbitset", diff --git a/Cargo.toml b/Cargo.toml index 75733c260..60d849718 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ members = [ ] [workspace.package] -version = "0.14.1" +version = "0.14.2" edition = "2021" rust-version = "1.64" authors = ["Matthew Treinish "] @@ -57,7 +57,7 @@ rand_pcg.workspace = true rayon.workspace = true serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -rustworkx-core = { path = "rustworkx-core", version = "=0.14.1" } +rustworkx-core = { path = "rustworkx-core", version = "=0.14.2" } [dependencies.pyo3] version = "0.20.2" diff --git a/docs/source/conf.py b/docs/source/conf.py index c5ed5fe12..4b18abd6b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -26,7 +26,7 @@ # The short X.Y version. version = '0.14' # The full version, including alpha/beta/rc tags. -release = '0.14.1' +release = '0.14.2' extensions = ['sphinx.ext.autodoc', 'sphinx.ext.autosummary', diff --git a/releasenotes/notes/prepare-0.14.1-e5065553a44eb035.yaml b/releasenotes/notes/0.14/prepare-0.14.1-e5065553a44eb035.yaml similarity index 100% rename from releasenotes/notes/prepare-0.14.1-e5065553a44eb035.yaml rename to releasenotes/notes/0.14/prepare-0.14.1-e5065553a44eb035.yaml diff --git a/releasenotes/notes/prepare-0.14.2-c324e1f186658efe.yaml b/releasenotes/notes/prepare-0.14.2-c324e1f186658efe.yaml new file mode 100644 index 000000000..cea1c948d --- /dev/null +++ b/releasenotes/notes/prepare-0.14.2-c324e1f186658efe.yaml @@ -0,0 +1,7 @@ +--- +prelude: > + The rustworkx 0.14.2 release is a small bug fix release that fixes two issues. + Firstly, it includes a fix for the Python type annotations of graph search + methods. Secondly, it includes improved error messages for shortest path + functions when providing a source that is not in the graph. + diff --git a/setup.py b/setup.py index ea4811345..4a205c330 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def readme(): graphviz_extras = ["pillow>=5.4"] PKG_NAME = os.getenv("RUSTWORKX_PKG_NAME", "rustworkx") -PKG_VERSION = "0.14.1" +PKG_VERSION = "0.14.2" PKG_PACKAGES = ["rustworkx", "rustworkx.visualization"] PKG_INSTALL_REQUIRES = ["numpy>=1.16.0,<2"] RUST_EXTENSIONS = [RustExtension("rustworkx.rustworkx", "Cargo.toml",