Skip to content

Commit

Permalink
Prepare 0.14.2 release (#1139)
Browse files Browse the repository at this point in the history
This PR is to release the fixes for #1130 and #1117. It should be a straightforward minor bugfix release
  • Loading branch information
IvanIsCoding committed Mar 12, 2024
1 parent 4a07f44 commit 09ce8ad
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ members = [
]

[workspace.package]
version = "0.14.1"
version = "0.14.2"
edition = "2021"
rust-version = "1.64"
authors = ["Matthew Treinish <mtreinish@kortar.org>"]
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
7 changes: 7 additions & 0 deletions releasenotes/notes/prepare-0.14.2-c324e1f186658efe.yaml
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 09ce8ad

Please sign in to comment.