Skip to content

Commit

Permalink
Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdwetering committed Feb 19, 2022
1 parent 8504035 commit 2bbb8de
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyzx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
name="pyzx",
author="Quantomatic",
author_email="[email protected]",
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,
Expand All @@ -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,
)

0 comments on commit 2bbb8de

Please sign in to comment.