diff --git a/docs/releases.rst b/docs/releases.rst index 2bd0b447f1..3fac1971b9 100644 --- a/docs/releases.rst +++ b/docs/releases.rst @@ -6,17 +6,6 @@ v5 Breaking Changes Summary .. towncrier release notes start -v5.14.0 (2021-01-04) --------------------- - -Misc -~~~~ - -- `#1816 `__ - - -v5.14.0 (2020-12-21) --------------------- Features ~~~~~~~~ @@ -28,7 +17,7 @@ Features Misc ~~~~ -- `#1815 `__ +- `#1815 `__, `#1816 `__ v5.13.1 (2020-12-03) diff --git a/docs/web3.beacon.rst b/docs/web3.beacon.rst index 9333e124cd..5872384114 100644 --- a/docs/web3.beacon.rst +++ b/docs/web3.beacon.rst @@ -4,7 +4,6 @@ Web3 Eth 2.0 Beacon API Module contents --------------- -.. automodule:: web3.beacon.main - :members: - :undoc-members: - :show-inheritance: +Docs coming soon! + +See ``web3/beacon/main.py`` for available methods. diff --git a/newsfragments/1825.bugfix.rst b/newsfragments/1825.bugfix.rst new file mode 100644 index 0000000000..76179dd378 --- /dev/null +++ b/newsfragments/1825.bugfix.rst @@ -0,0 +1 @@ +Remove auto-documenting from the Beacon API diff --git a/web3/main.py b/web3/main.py index 4209d653b2..96485dab18 100644 --- a/web3/main.py +++ b/web3/main.py @@ -52,9 +52,6 @@ from web3._utils.normalizers import ( abi_ens_resolver, ) -from web3.beacon import ( - Beacon, -) from web3.eth import ( Eth, ) @@ -123,7 +120,6 @@ def get_default_modules() -> Dict[str, Sequence[Any]]: "txpool": (GethTxPool,), }), "testing": (Testing,), - "beacon": (Beacon,), }