From 1170a2f1461a31deb090eafa2a03e5fb8097a5a3 Mon Sep 17 00:00:00 2001 From: John van de Wetering Date: Wed, 2 Dec 2020 11:51:14 +0100 Subject: [PATCH] Bump version number --- doc/conf.py | 4 ++-- pyzx/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 58530e23..70a358d7 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -30,9 +30,9 @@ author = 'Aleks Kissinger and John van de Wetering' # The short X.Y version -version = '0.6.2' +version = '0.6.3' # The full version, including alpha/beta/rc tags -release = '0.6.2' +release = '0.6.3' # -- General configuration --------------------------------------------------- diff --git a/pyzx/__init__.py b/pyzx/__init__.py index 1bea3637..25113ec7 100644 --- a/pyzx/__init__.py +++ b/pyzx/__init__.py @@ -14,7 +14,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.6.2" +__version__ = "0.6.3" from .graph.graph import Graph from .circuit import Circuit, gates, id diff --git a/setup.py b/setup.py index 2c56d2ba..328c1b84 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ name="pyzx", author="Quantomatic", author_email="john@vdwetering.name", - version="0.6.2", + version="0.6.3", url="https://github.com/Quantomatic/pyzx.git", description="Library for quantum circuit rewriting and optimisation using the ZX-calculus", long_description=README,