Skip to content
This repository has been archived by the owner on Nov 15, 2021. It is now read-only.

Commit

Permalink
Merge pull request #128 from CityOfZion/development
Browse files Browse the repository at this point in the history
v0.4.3
  • Loading branch information
localhuman committed Dec 22, 2017
2 parents eb5f50b + aff3e6c commit d363465
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project following the `0.4.0` release will be documented in this file.

## [0.4.3] 2017-12-21
- updated `neo-boa` to `0.2.1`
- added support for array `REVERSE` and `APPEND` VM opcodes

## [0.4.2] 2017-12-18
- updated `neo-boa` to `0.2.0`
- added support for [debug storage](https://github.com/CityOfZion/neo-python/pull/120)
Expand Down
7 changes: 7 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ Changelog

All notable changes to this project following the ``0.4.0`` release will be documented in this file.

[0.4.3] 2017-12-21
------------------

- updated ``neo-boa`` to ``0.2.1``
- added support for array ``REVERSE`` and ``APPEND`` VM opcodes


[0.4.2] 2017-12-18
------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def __getattr__(cls, name):
# built documents.
#
# The short X.Y version.
version = '0.3.2'
version = '0.4.3'
# The full version, including alpha/beta/rc tags.
release = '0.3.2'
release = '0.4.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion neo/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.4.2'
__version__ = '0.4.3'
2 changes: 2 additions & 0 deletions prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,6 +437,8 @@ def show_wallet(self, arguments):
AddAlias(self.Wallet, arguments[1], arguments[2])
else:
print("Please supply an address and title")
else:
print("wallet: '{}' is an invalid parameter".format(item))

def do_send(self, arguments):
construct_and_send(self, self.Wallet, arguments)
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ memory-profiler==0.47
mmh3==2.5.1
mock==2.0.0
mpmath==1.0.0
neo-boa==0.2.0
neo-boa==0.2.1
neo-python-rpc==0.1.8
numpy==1.13.3
pbr==3.1.1
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ all_files = 1
upload-dir = docs/build/html

[bumpversion]
current_version = 0.4.2
current_version = 0.4.3
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
setup(
name='neo-python',
python_requires='>=3.4, <3.6',
version='0.4.2',
version='0.4.3',
description="Python Node and SDK for the NEO blockchain",
long_description=readme,
author="Thomas Saunders",
Expand Down

0 comments on commit d363465

Please sign in to comment.