Skip to content

Commit

Permalink
Bump version strings post release (#1070)
Browse files Browse the repository at this point in the history
Now that rustworkx 0.14.0 has been released this commit bumps all the
version strings for the rustworkx and rustworkx-core to be 0.15.0. This
now indicates the development version on the main branch is 0.15.0 and
differentiates it from the released 0.14.0.
  • Loading branch information
mtreinish committed Jan 28, 2024
1 parent 8984d9a commit e5c79aa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 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.0"
version = "0.15.0"
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.0" }
rustworkx-core = { path = "rustworkx-core", version = "=0.15.0" }

[dependencies.pyo3]
version = "0.20.2"
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.14.0'
version = '0.15'
# The full version, including alpha/beta/rc tags.
release = '0.14.0'
release = '0.15.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.14.0"
PKG_VERSION = "0.15.0"
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 e5c79aa

Please sign in to comment.