Skip to content

Commit

Permalink
v2.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
F483 committed Nov 19, 2015
1 parent 5efbada commit af045a8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ setup: virtualenv
$(PIP) install $(WHEEL_INSTALL_ARGS) -r requirements.txt
$(PIP) install $(WHEEL_INSTALL_ARGS) -r test_requirements.txt
$(PIP) install $(WHEEL_INSTALL_ARGS) -r develop_requirements.txt
$(PY) setup.py install


shell: setup
Expand Down
1 change: 1 addition & 0 deletions dataserv_client/control/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ def _migrate_200_to_201(btctxstore, cfg):
"2.1.7": lambda btctxstore, cfg: _set_version(btctxstore, cfg, '2.1.8'),
"2.1.8": lambda btctxstore, cfg: _set_version(btctxstore, cfg, '2.1.9'),
"2.1.9": lambda btctxstore, cfg: _set_version(btctxstore, cfg, '2.1.10'),
"2.1.10": lambda btctxstore, cfg: _set_version(btctxstore, cfg, '2.1.11'),
# TODO add smarter version ranges so no new line needed for every version
}

Expand Down
2 changes: 1 addition & 1 deletion dataserv_client/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# 1) we don't load dependencies by storing it in __init__.py
# 2) we can import it in setup.py for the same reason
# 3) we can import it into your module module
__version__ = '2.1.10'
__version__ = '2.1.11'
2 changes: 1 addition & 1 deletion run_tests.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/usr/bin/env python


export DATASERV_MAX_PING="10"
Expand Down

0 comments on commit af045a8

Please sign in to comment.