From 2bbb8de42ef7013a58b280784672baf8bdca7507 Mon Sep 17 00:00:00 2001 From: John van de Wetering Date: Sat, 19 Feb 2022 20:22:25 +0000 Subject: [PATCH] Bump version number --- CHANGELOG.md | 1 - doc/conf.py | 4 ++-- pyzx/__init__.py | 2 +- setup.py | 5 +++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e75df98..2a268f83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,7 +29,6 @@ Paul Tirlisan). ### Changed - `Graph.inputs` is now a method that returns a list of inputs, instead of `Graph.inputs` being a list itself. The same for `Graph.outputs`. -- ### Fixed - Several incorrect scalars were fixed in ZH-diagram rewrite rules. diff --git a/doc/conf.py b/doc/conf.py index 084ca104..3b4f39ff 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.4' +version = '0.7.0' # The full version, including alpha/beta/rc tags -release = '0.6.4' +release = '0.7.0' # -- General configuration --------------------------------------------------- diff --git a/pyzx/__init__.py b/pyzx/__init__.py index bc9b21c0..aff2a71a 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.4" +__version__ = "0.7.0" from .graph.graph import Graph from .circuit import Circuit, gates, id diff --git a/setup.py b/setup.py index 3854cfae..94b865ee 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ name="pyzx", author="Quantomatic", author_email="john@vdwetering.name", - version="0.6.4", + version="0.7.0", url="https://github.com/Quantomatic/pyzx.git", description="Library for quantum circuit rewriting and optimisation using the ZX-calculus", long_description=README, @@ -36,6 +36,7 @@ python_requires='>=3.6', install_requires=["typing_extensions>=3.7.4", "numpy>=1.14", - "pyperclip>=1.8.1"], + "pyperclip>=1.8.1", + "tqdm>=4.56.0"], include_package_data=True, )