From bc461ba911f2f8315991976bc919550ae624447e Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Wed, 7 Jun 2023 07:20:51 -0400 Subject: [PATCH] Bump version strings post release Now that rustworkx 0.13.0 is released this commit bumps all the version strings for the rustworkx and rustworkx-core to be 0.14.0. This now indicates the development version on the main branch is 0.14.0 and differentiates it from the released 0.13.0. --- .mergify.yml | 2 +- Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- docs/source/conf.py | 4 ++-- rustworkx-core/Cargo.toml | 2 +- setup.py | 2 +- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.mergify.yml b/.mergify.yml index 957529cb3..f599bb38e 100644 --- a/.mergify.yml +++ b/.mergify.yml @@ -36,4 +36,4 @@ pull_request_rules: actions: backport: branches: - - stable/0.12 + - stable/0.13 diff --git a/Cargo.lock b/Cargo.lock index 14bbda764..c31ec5e2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -589,7 +589,7 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" [[package]] name = "rustworkx" -version = "0.13.0" +version = "0.14.0" dependencies = [ "ahash 0.8.0", "fixedbitset", @@ -615,7 +615,7 @@ dependencies = [ [[package]] name = "rustworkx-core" -version = "0.13.0" +version = "0.14.0" dependencies = [ "ahash 0.8.0", "fixedbitset", diff --git a/Cargo.toml b/Cargo.toml index 7894eecfd..70fd8efd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustworkx" description = "A python graph library implemented in Rust" -version = "0.13.0" +version = "0.14.0" authors = ["Matthew Treinish "] license = "Apache-2.0" readme = "README.md" @@ -33,7 +33,7 @@ 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.14.0" } [dependencies.pyo3] version = "0.19.0" diff --git a/docs/source/conf.py b/docs/source/conf.py index ddc58fb81..72998d3be 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,9 +24,9 @@ docs_url_prefix = "ecosystem/rustworkx" # The short X.Y version. -version = '0.13.0' +version = '0.14.0' # The full version, including alpha/beta/rc tags. -release = '0.13.0' +release = '0.14.0' extensions = ['sphinx.ext.autodoc', 'sphinx.ext.autosummary', diff --git a/rustworkx-core/Cargo.toml b/rustworkx-core/Cargo.toml index 33c7e1200..2d6620082 100644 --- a/rustworkx-core/Cargo.toml +++ b/rustworkx-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustworkx-core" -version = "0.13.0" +version = "0.14.0" edition = "2021" authors = ["Matthew Treinish "] description = "Rust APIs used for rustworkx algorithms" diff --git a/setup.py b/setup.py index 053825cc1..6e8121ce2 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.13.0" +PKG_VERSION = "0.14.0" PKG_PACKAGES = ["rustworkx", "rustworkx.visualization"] PKG_INSTALL_REQUIRES = ['numpy>=1.16.0'] RUST_EXTENSIONS = [RustExtension("rustworkx.rustworkx", "Cargo.toml",