Skip to content
Snippets Groups Projects
Commit 4c7b5311 authored by Holger's avatar Holger
Browse files

Prepare next release 0.23.0

parent 5d225006
No related branches found
No related tags found
2 merge requests!5Taken current version of master branch in the https://github.com/holgern/beem,!4Original changes pushed to master at https://github.com/holgern/beem
Changelog
=========
0.23.0
------
* set hive as default for default_chain
* get_nodes return hive nodes by default
0.22.14
-------
* add click_shell to turn beempy into a shell utility with autocompletion
......
......@@ -9,10 +9,10 @@ environment:
WITH_COMPILER: "cmd /E:ON /V:ON /C .\\appveyor\\run_with_compiler.cmd"
matrix:
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
PYTHON_ARCH: "64"
MINICONDA: C:\Miniconda36-x64
COMM_PY: "py36"
MINICONDA: C:\Miniconda37-x64
COMM_PY: "py37"
install:
......
......@@ -169,6 +169,14 @@ class NodeList(list):
"owner": "someguy123",
"hive": True,
"score": 10
},
{
"url": "https://api.pharesim.me",
"version": "0.23.0",
"type": "appbase",
"owner": "pharesim",
"hive": True,
"score": 10
}]
super(NodeList, self).__init__(nodes)
......@@ -260,7 +268,7 @@ class NodeList(list):
new_nodes.append(new_node)
super(NodeList, self).__init__(new_nodes)
def get_nodes(self, hive=False, exclude_limited=False, dev=False, testnet=False, testnetdev=False, wss=True, https=True, not_working=False, normal=True, appbase=True):
def get_nodes(self, hive=True, exclude_limited=False, dev=False, testnet=False, testnetdev=False, wss=True, https=True, not_working=False, normal=True, appbase=True):
""" Returns nodes as list
:param bool hive: When True, only HIVE nodes will be returned
......
......@@ -404,7 +404,7 @@ class Configuration(DataDir):
#: Default configuration
nodelist = NodeList()
blockchain = "steem" # will be changed to hive in the next release
blockchain = "hive"
if blockchain == "hive":
nodes = nodelist.get_hive_nodes(testnet=False)
elif blockchain == "steem":
......
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.22.14'
version = '0.23.0'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.22.14'
version = '0.23.0'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.22.14'
version = '0.23.0'
"""THIS FILE IS GENERATED FROM beem SETUP.PY."""
version = '0.22.14'
version = '0.23.0'
0.22.14
\ No newline at end of file
0.23.0
\ No newline at end of file
......@@ -16,7 +16,7 @@ except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.22.14'
VERSION = '0.23.0'
tests_require = ['mock >= 2.0.0', 'pytest', 'pytest-mock', 'parameterized']
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment