From d82fc7321e3de7ef735c9db3391f0043a010b234 Mon Sep 17 00:00:00 2001 From: Piper Merriam Date: Mon, 6 Feb 2017 16:15:05 -0700 Subject: [PATCH] 3.6.0 Release --- CHANGELOG | 10 ++++++++++ setup.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index a7ac17e..5cd750b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 ----- diff --git a/setup.py b/setup.py index 292b56f..44906c9 100644 --- a/setup.py +++ b/setup.py @@ -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',