Skip to content

Commit

Permalink
3.2.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
pipermerriam committed Oct 24, 2016
1 parent 6571a8c commit cee5992
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 4 additions & 0 deletions docs/web3.main.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='web3',
version='3.1.1',
version='3.2.0',
description="""Web3.py""",
long_description=readme,
author='Piper Merriam',
Expand Down
2 changes: 2 additions & 0 deletions web3/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

from web3.providers.rpc import (
RPCProvider,
KeepAliveRPCProvider,
TestRPCProvider,
)
from web3.providers.ipc import IPCProvider
Expand Down Expand Up @@ -50,6 +51,7 @@
class Web3(object):
# Providers
RPCProvider = RPCProvider
KeepAliveRPCProvider = KeepAliveRPCProvider
IPCProvider = IPCProvider
TestRPCProvider = TestRPCProvider

Expand Down

0 comments on commit cee5992

Please sign in to comment.