From 7e1c726b927f83186a37401326283896d45014c5 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Wed, 18 Mar 2020 14:28:38 -0400 Subject: [PATCH] Bump versions and prepare for release This commit updates the version numbers and package metadata to prepare for the next release. --- Cargo.toml | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 14fc8fb1f..323f36ae4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "retworkx" description = "A python graph library implemented in Rust" -version = "0.3.2" +version = "0.3.3" authors = ["Matthew Treinish "] license = "Apache-2.0" readme = "README.md" diff --git a/setup.py b/setup.py index e49d173f5..70fd81ac6 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def readme(): setup( name="retworkx", - version="0.3.2", + version="0.3.3", description="A python graph library implemented in Rust", long_description=readme(), long_description_content_type='text/markdown', @@ -24,8 +24,8 @@ def readme(): author_email="mtreinish@kortar.org", classifiers=[ "License :: OSI Approved :: Apache Software License", - "Development Status :: 3 - Alpha", "Intended Audience :: Developers", + "Intended Audience :: Science/Research", "Programming Language :: Rust", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.5", @@ -36,6 +36,7 @@ def readme(): "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", ], + keywords="Networks network graph Graph Theory DAG", url="https://github.com/Qiskit/retworkx", project_urls={ "Bug Tracker": "https://github.com/Qiskit/retworkx/issues",