Skip to content

Commit

Permalink
v2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
F483 committed Sep 8, 2015
1 parent e29a1a9 commit 778dab5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
6 changes: 0 additions & 6 deletions dataserv_client/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,6 @@ def __init__(self, url=common.DEFAULT_URL, debug=False, quiet=False,

self.cfg = control.config.get(self.btctxstore, self.cfg_path)

logger.debug("test debug")
logger.info("test info")
logger.warning("test warning")
logger.error("test error")
logger.critical("test critical")

@staticmethod
def version():
print(__version__)
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 @@ -85,6 +85,7 @@ def _migrate_200_to_201(btctxstore, cfg):
"2.0.1": lambda btctxstore, cfg: _set_version(btctxstore, cfg, '2.0.2'),
"2.0.2": lambda btctxstore, cfg: _set_version(btctxstore, cfg, '2.0.3'),
"2.0.3": lambda btctxstore, cfg: _set_version(btctxstore, cfg, '2.1.0'),
"2.1.0": lambda btctxstore, cfg: _set_version(btctxstore, cfg, '2.1.1'),
# 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.0'
__version__ = '2.1.1'

0 comments on commit 778dab5

Please sign in to comment.