From 7b5890dff88b9a05193dece0a38fc89951228a38 Mon Sep 17 00:00:00 2001 From: Pete Shadbolt Date: Thu, 7 Mar 2019 16:42:42 -0800 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.6.0=20=E2=86=92=200.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- README.md | 2 +- doc/conf.py | 4 ++-- doc/index.rst | 2 +- setup.py | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 262c30c..00fcbd0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.6.0 +current_version = 0.6.1 commit = True tag = True diff --git a/README.md b/README.md index be5d880..aafd22b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# abp 0.6.0 +# abp 0.6.1 Python port of Anders and Briegel' s [method](https://arxiv.org/abs/quant-ph/0504117) for fast simulation of Clifford circuits. ## Installation diff --git a/doc/conf.py b/doc/conf.py index 8e1831d..2b29e9f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -60,9 +60,9 @@ author = 'Pete Shadbolt' # built documents. # # The short X.Y version. -version = '0.6.0' +version = '0.6.1' # The full version, including alpha/beta/rc tags. -release = '0.6.0' +release = '0.6.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/doc/index.rst b/doc/index.rst index 2f2ed48..8583540 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -26,7 +26,7 @@ You can install from ``pip``: .. code-block:: bash - $ pip install --user abp==0.6.0 + $ pip install --user abp==0.6.1 Alternatively, clone from the `github repo `_ and run ``setup.py``: diff --git a/setup.py b/setup.py index e268f91..9e40d02 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from os import path setup( name = "abp", - version = "0.6.0", + version = "0.6.1", packages = ["abp"], test_suite = "tests", author = "Pete Shadbolt",