Skip to content

Commit

Permalink
Bump version strings post release (#1374)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
mtreinish authored Jan 28, 2025
1 parent c4e9432 commit 504ff5f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/.mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ pull_request_rules:
actions:
backport:
branches:
- stable/0.15
- stable/0.16
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.16.0"
version = "0.17.0"
edition = "2021"
rust-version = "1.70"
authors = ["Matthew Treinish <[email protected]>"]
Expand Down Expand Up @@ -59,7 +59,7 @@ rayon.workspace = true
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
smallvec = { version = "1.0", features = ["union"] }
rustworkx-core = { path = "rustworkx-core", version = "=0.16.0" }
rustworkx-core = { path = "rustworkx-core", version = "=0.17.0" }
flate2 = "1.0.35"

[dependencies.pyo3]
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
docs_url_prefix = ""

# The short X.Y version.
version = '0.16'
version = '0.17'
# The full version, including alpha/beta/rc tags.
release = '0.16.0'
release = '0.17.0'

extensions = ['sphinx.ext.autodoc',
'sphinx.ext.autosummary',
Expand Down
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.16.0"
PKG_VERSION = "0.17.0"
PKG_PACKAGES = ["rustworkx", "rustworkx.visualization"]
PKG_INSTALL_REQUIRES = ["numpy>=1.16.0,<3"]
RUST_EXTENSIONS = [RustExtension("rustworkx.rustworkx", "Cargo.toml",
Expand Down

0 comments on commit 504ff5f

Please sign in to comment.