mirror of
https://github.com/FlipsideCrypto/web3.py.git
synced 2026-02-06 10:56:47 +00:00
3.2.0 Release
This commit is contained in:
parent
6571a8c060
commit
cee5992069
@ -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
|
||||
|
||||
@ -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`
|
||||
|
||||
2
setup.py
2
setup.py
@ -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',
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user