Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne-napoleone committed Sep 13, 2018
2 parents 20f5d45 + 82e61c3 commit f70adbf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tmn"
version = "0.1.0"
version = "0.1.1"
description = ""
readme = "README.md"
homepage = "https://tomochain.com"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def tmn():


def test_version(runner, tmn):
version = '0.1.0'
version = '0.1.1'
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 +1 @@
__version__ = '0.1.0'
__version__ = '0.1.1'
3 changes: 2 additions & 1 deletion tmn/compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@
'detach': True
},
'tomochain': {
'image': 'tomochain/infra-tomochain:latest',
'image': 'tomochain/node:latest',
'name': 'tomochain',
'environment': {
'IDENTITY': None,
'PRIVATE_KEY': None,
'BOOTNODES': None,
'NETWORK_ID': None,
'NETSTATS_HOST': None,
'NETSTATS_PORT': None,
'WS_SECRET': None
Expand Down
2 changes: 2 additions & 0 deletions tmn/networks.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
),
'NETSTATS_HOST': 'stats.testnet.tomochain.com',
'NETSTATS_PORT': '443',
'NETWORK_ID': '89',
'WS_SECRET': (
'anna-coal-flee-carrie-zip-hhhh-tarry-laue-felon-rhine'
)
Expand All @@ -31,6 +32,7 @@
),
'NETSTATS_HOST': 'stats.devnet.tomochain.com',
'NETSTATS_PORT': '443',
'NETWORK_ID': '90',
'WS_SECRET': (
'torn-fcc-caper-drool-jelly-zip-din-fraud-rater-darn'
)
Expand Down

0 comments on commit f70adbf

Please sign in to comment.