3.2.0 Release

This commit is contained in:
Piper Merriam 2016-10-24 16:28:46 -06:00
parent 6571a8c060
commit cee5992069
4 changed files with 10 additions and 3 deletions

View File

@ -1,6 +1,7 @@
Unreleased
-----------
3.2.0
-----
* `web3.shh` is now implemented.
* Introduced `KeepAliveRPCProvider` to correctly recycle HTTP connections and use HTTP keep alive
3.1.1

View File

@ -18,6 +18,10 @@ Providers
Convenience API to access :py:class:`web3.providers.rpc.RPCProvider`
.. py:attribute:: Web3.KeepAliveRPCProvider
Convenience API to access :py:class:`web3.providers.rpc.KeepAliveRPCProvider`
.. py:attribute:: Web3.IPCProvider
Convenience API to access :py:class:`web3.providers.rpc.IPCProvider`

View File

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

View File

@ -14,6 +14,7 @@ from web3.iban import Iban
from web3.providers.rpc import (
RPCProvider,
KeepAliveRPCProvider,
TestRPCProvider,
)
from web3.providers.ipc import IPCProvider
@ -50,6 +51,7 @@ from web3.utils.address import (
class Web3(object):
# Providers
RPCProvider = RPCProvider
KeepAliveRPCProvider = KeepAliveRPCProvider
IPCProvider = IPCProvider
TestRPCProvider = TestRPCProvider