ソースを参照

Bump version: 0.4.25 → 0.4.26

master
コミット
14193a8a53
8個のファイルの変更10行の追加10行の削除
  1. +1
    -1
      .bumpversion.cfg
  2. +2
    -2
      README.md
  3. +1
    -1
      abp/static/index.html
  4. +1
    -1
      abp/static/scripts/main.js
  5. +1
    -1
      bin/abpserver
  6. +2
    -2
      doc/conf.py
  7. +1
    -1
      doc/index.rst
  8. +1
    -1
      setup.py

+ 1
- 1
.bumpversion.cfg ファイルの表示

@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.25
current_version = 0.4.26
commit = True
tag = True



+ 2
- 2
README.md ファイルの表示

@@ -1,4 +1,4 @@
# abp 0.4.25
# abp 0.4.26
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.25
$ pip install --user abp==0.4.26
```

Or clone and install in `develop` mode:


+ 1
- 1
abp/static/index.html ファイルの表示

@@ -24,7 +24,7 @@
<div id=node_info class=hidden> nothing </div>
<div id=server_info class=hidden> </div>

<div id=version>Version 0.4.25</div>
<div id=version>Version 0.4.26</div>

<div id=node_data class=hidden>
<div id=node_name></div>


+ 1
- 1
abp/static/scripts/main.js ファイルの表示

@@ -1,4 +1,4 @@
console.log("abp v0.4.25");
console.log("abp v0.4.26");

window.onload = function() {
graph.prepare();


+ 1
- 1
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.25"
print "abpserver 0.4.26"
print where
print "Open http://localhost:5001 in a browser!"
os.chdir(where)


+ 2
- 2
doc/conf.py ファイルの表示

@@ -60,9 +60,9 @@ author = u'Pete Shadbolt'
# built documents.
#
# The short X.Y version.
version = '0.4.25'
version = '0.4.26'
# The full version, including alpha/beta/rc tags.
release = '0.4.25'
release = '0.4.26'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.


+ 1
- 1
doc/index.rst ファイルの表示

@@ -26,7 +26,7 @@ You can install from ``pip``:

.. code-block:: bash

$ pip install --user abp==0.4.25
$ pip install --user abp==0.4.26

Alternatively, clone from the `github repo <https://github.com/peteshadbolt/abp>`_ and run ``setup.py``:



+ 1
- 1
setup.py ファイルの表示

@@ -6,7 +6,7 @@ STATIC = glob("abp/static/*.*")+glob("abp/static/img/*.*")+glob("abp/static/scri

setup(
name = "abp",
version = "0.4.25",
version = "0.4.26",
packages = ["abp", "abp.static"],
test_suite = "tests",
author = "Pete Shadbolt",


読み込み中…
キャンセル
保存