Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.3.2'
Browse files Browse the repository at this point in the history
close #43
  • Loading branch information
etienne-napoleone committed Nov 27, 2018
2 parents 3dff0a5 + 23a8cd6 commit 613b474
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tmn"
version = "0.3.1"
version = "0.3.2"
description = "Quickstart your masternode"
readme = "README.md"
license = "GPL-3.0+"
Expand All @@ -13,7 +13,7 @@ authors = [
]

[tool.poetry.dependencies]
python = "^3.5"
python = "^3.5.3"
docker = "3.5.0"
pastel = "^0.1.0"
clint = "^0.5.1"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def _clean(tmn):


def test_version(runner, tmn):
version = '0.3.1'
version = '0.3.2'
result = runner.invoke(tmn.main, ['--version'])
assert result.output[-6:-1] == version
assert package.__version__ == version
Expand Down
2 changes: 1 addition & 1 deletion tmn/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import logging

__version__ = '0.3.1'
__version__ = '0.3.2'

handler = logging.StreamHandler()
handler.setFormatter(logging.Formatter('[%(levelname)s] %(message)s'))
Expand Down

0 comments on commit 613b474

Please sign in to comment.