diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 4832798..13cba04 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
-current_version = 0.4.22
+current_version = 0.4.24
commit = True
tag = True
diff --git a/README.md b/README.md
index 58a0245..cd989c8 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# abp 0.4.22
+# abp 0.4.24
Python port of Anders and Briegel' s [method](https://arxiv.org/abs/quant-ph/0504117) for fast simulation of Clifford circuits.
## Documentation
@@ -8,7 +8,7 @@ You can read the full documentation [here](https://peteshadbolt.co.uk/abp/). You
It's easiest to install with `pip`:
```shell
-$ pip install --user abp==0.4.22
+$ pip install --user abp==0.4.24
```
Or clone and install in `develop` mode:
diff --git a/abp/static/index.html b/abp/static/index.html
index 5fd3cbb..efcf780 100644
--- a/abp/static/index.html
+++ b/abp/static/index.html
@@ -24,7 +24,7 @@
nothing
-Version 0.4.22
+Version 0.4.24
diff --git a/bin/abpserver b/bin/abpserver
index 92a8157..e66fc0f 100755
--- a/bin/abpserver
+++ b/bin/abpserver
@@ -81,7 +81,7 @@ if __name__ == '__main__':
# Change to the right working dir
where = os.path.abspath(resource_filename("abp.static", ""))
- print "abpserver 0.4.22"
+ print "abpserver 0.4.24"
print where
print "Open http://localhost:5001 in a browser!"
os.chdir(where)
diff --git a/doc/abp.rst b/doc/abp.rst
index 1aea327..0137109 100644
--- a/doc/abp.rst
+++ b/doc/abp.rst
@@ -36,7 +36,7 @@ abp.clifford module
:show-inheritance:
abp.nxgraphstate module
--------------------
+-----------------------
.. automodule:: abp.nxgraphstate
:members:
diff --git a/doc/conf.py b/doc/conf.py
index 696ebc7..478899d 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -60,9 +60,9 @@ author = u'Pete Shadbolt'
# built documents.
#
# The short X.Y version.
-version = '0.4.22'
+version = '0.4.24'
# The full version, including alpha/beta/rc tags.
-release = '0.4.22'
+release = '0.4.24'
# 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 b733ad1..b0ef553 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.4.22
+ $ pip install --user abp==0.4.24
Alternatively, clone from the `github repo
`_ and run ``setup.py``:
diff --git a/setup.py b/setup.py
index 41057bf..d48b8a9 100755
--- a/setup.py
+++ b/setup.py
@@ -6,7 +6,7 @@ STATIC = glob("abp/static/*.*")+glob("abp/static/img/*.*")+glob("abp/static/scri
setup(
name = "abp",
- version = "0.4.22",
+ version = "0.4.24",
packages = ["abp", "abp.static"],
test_suite = "tests",
author = "Pete Shadbolt",