Skip to content

Commit

Permalink
Bump version strings post release (Qiskit#424)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mtreinish committed Aug 29, 2021
1 parent 06bad5c commit c29bd52
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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 <mtreinish@kortar.org>"]
license = "Apache-2.0"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit c29bd52

Please sign in to comment.