Skip to content

Commit 504ff5f

Browse files
authored
Bump version strings post release (#1374)
* Bump version strings post release Now that rustworkx 0.16.0 has been released this commit bumps all the version strings for the rustworkx and rustworkx-core to be 0.17.0. This now indicates the development version on the main branch is 0.17.0 and differentiates it from the released 0.16.0. * Update mergify config too
1 parent c4e9432 commit 504ff5f

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/.mergify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ pull_request_rules:
55
actions:
66
backport:
77
branches:
8-
- stable/0.15
8+
- stable/0.16

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ members = [
1616
]
1717

1818
[workspace.package]
19-
version = "0.16.0"
19+
version = "0.17.0"
2020
edition = "2021"
2121
rust-version = "1.70"
2222
authors = ["Matthew Treinish <[email protected]>"]
@@ -59,7 +59,7 @@ rayon.workspace = true
5959
serde = { version = "1.0", features = ["derive"] }
6060
serde_json = "1.0"
6161
smallvec = { version = "1.0", features = ["union"] }
62-
rustworkx-core = { path = "rustworkx-core", version = "=0.16.0" }
62+
rustworkx-core = { path = "rustworkx-core", version = "=0.17.0" }
6363
flate2 = "1.0.35"
6464

6565
[dependencies.pyo3]

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
docs_url_prefix = ""
2525

2626
# The short X.Y version.
27-
version = '0.16'
27+
version = '0.17'
2828
# The full version, including alpha/beta/rc tags.
29-
release = '0.16.0'
29+
release = '0.17.0'
3030

3131
extensions = ['sphinx.ext.autodoc',
3232
'sphinx.ext.autosummary',

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def readme():
2626
graphviz_extras = ["pillow>=5.4"]
2727

2828
PKG_NAME = os.getenv("RUSTWORKX_PKG_NAME", "rustworkx")
29-
PKG_VERSION = "0.16.0"
29+
PKG_VERSION = "0.17.0"
3030
PKG_PACKAGES = ["rustworkx", "rustworkx.visualization"]
3131
PKG_INSTALL_REQUIRES = ["numpy>=1.16.0,<3"]
3232
RUST_EXTENSIONS = [RustExtension("rustworkx.rustworkx", "Cargo.toml",

0 commit comments

Comments
 (0)