3.6.0 Release

This commit is contained in:
Piper Merriam 2017-02-06 16:15:05 -07:00
parent 95c824044e
commit d82fc7321e
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,13 @@
3.6.0
-----
* Deprecate `Contract.code`: replaced by `Contract.bytecode`
* Deprecate `Contract.code_runtime`: replaced by `Contract.bytecode_runtime`
* Deprecate `abi`, `code`, `code_runtime` and `source` as arguments for the `Contract` object.
* Deprecate `source` as a property of the `Contract` object
* Add `Contract.factory()` API.
* Deprecate the `construct_contract_factory` helper function.
3.5.3
-----

View File

@ -16,7 +16,7 @@ readme = open(os.path.join(DIR, 'README.md')).read()
setup(
name='web3',
version='3.5.3',
version='3.6.0',
description="""Web3.py""",
long_description=readme,
author='Piper Merriam',