From c29bd52d95bda2c32e74166c9761c91af224dbac Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Sun, 29 Aug 2021 07:13:11 -0400 Subject: [PATCH] Bump version strings post release (#424) Now that the 0.10.x release is out the door we should bump the version string on main to show the source version we're installing is newer than what's been released. This bumps the version strings to 0.11.0. If we decide to do another bugfix release in the 0.10.x series we can create a branch from 0.10.1 and go from there. --- Cargo.toml | 2 +- docs/source/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6e13d0fbc..6740aa1a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "retworkx" description = "A python graph library implemented in Rust" -version = "0.10.1" +version = "0.11.0" authors = ["Matthew Treinish "] license = "Apache-2.0" readme = "README.md" diff --git a/docs/source/conf.py b/docs/source/conf.py index eee8583d1..9e72edb52 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,9 +24,9 @@ # The short X.Y version. -version = '0.10.0' +version = '0.11.0' # The full version, including alpha/beta/rc tags. -release = '0.10.0' +release = '0.11.0' extensions = ['sphinx.ext.autodoc', 'sphinx.ext.autosummary', diff --git a/setup.py b/setup.py index 86f7613cb..1cfc952b5 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def readme(): setup( name="retworkx", - version="0.10.1", + version="0.11.0", description="A python graph library implemented in Rust", long_description=readme(), long_description_content_type='text/markdown',