Skip to content

Commit a251ffb

Browse files
committed
Trinity v0.1.0-alpha.17 Release
1 parent 0c6b85d commit a251ffb

File tree

2 files changed

+44
-3
lines changed

2 files changed

+44
-3
lines changed

docs/release_notes/trinity.rst

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,47 @@
11
Trinity
22
=======
33

4+
0.1.0-alpha.17
5+
--------------
6+
7+
Released November 20, 2018
8+
9+
- `#1488 <https://github.com/ethereum/py-evm/pull/1488>`_: Bugfix: Bugfix for state sync to limit the number of open files.
10+
- `#1478 <https://github.com/ethereum/py-evm/pull/1478>`_: Maintenance: Improve logging messages during fast sync to include performance metrics
11+
- `#1476 <https://github.com/ethereum/py-evm/pull/1476>`_: Bugfix: Ensure that network connections are properly close when a peer doesn't successfully complete the handshake.
12+
- `#1474 <https://github.com/ethereum/py-evm/pull/1474>`_: Bugfix: EthStats fix for displaying correct uptime metrics
13+
- `#1471 <https://github.com/ethereum/py-evm/pull/1471>`_: Maintenance: Upgrade ``mypy`` to ``0.641``
14+
- `#1469 <https://github.com/ethereum/py-evm/pull/1469>`_: Maintenance: Add logging to show when fast sync has completed.
15+
- `#1467 <https://github.com/ethereum/py-evm/pull/1467>`_: Bugfix: Don't add peers which disconnect during the boot process to the peer pool.
16+
- `#1465 <https://github.com/ethereum/py-evm/pull/1465>`_: Bugfix: Proper handling for when ``SIGTERM`` is sent to the main Trinity process.
17+
- `#1463 <https://github.com/ethereum/py-evm/pull/1463>`_: Bugfix: Better handling for bad server responses by EthStats client.
18+
- `#1443 <https://github.com/ethereum/py-evm/pull/1443>`_: Maintenance: Merge the ``--nodekey`` and ``--nodekey-path`` flags.
19+
- `#1438 <https://github.com/ethereum/py-evm/pull/1438>`_: Bugfix: Remove warnings when printing the ASCII Trinity header
20+
- `#1437 <https://github.com/ethereum/py-evm/pull/1437>`_: Maintenance: Update to use f-strings for string formatting
21+
- `#1435 <https://github.com/ethereum/py-evm/pull/1435>`_: Maintenance: Enable Constantinople fork on Ropsten chain
22+
- `#1434 <https://github.com/ethereum/py-evm/pull/1434>`_: Bugfix: Fix incorrect mainnet genesis parameters.
23+
- `#1421 <https://github.com/ethereum/py-evm/pull/1421>`_: Maintenance: Implement ``eth_syncing`` JSON-RPC endpoint
24+
- `#1410 <https://github.com/ethereum/py-evm/pull/1410>`_: Maintenance: Implement EIP1283 for updated logic for ``SSTORE`` opcode gas costs.
25+
- `#1395 <https://github.com/ethereum/py-evm/pull/1395>`_: Bugfix: Fix gas cost calculations for ``CREATE2`` opcode
26+
- `#1386 <https://github.com/ethereum/py-evm/pull/1386>`_: Maintenance: Trinity now prints a message to make it more clear why Trinity was shutdown.
27+
- `#1387 <https://github.com/ethereum/py-evm/pull/1387>`_: Maintenance: Use colorized output for ``WARNING`` and ``ERROR`` level logging messages.
28+
- `#1378 <https://github.com/ethereum/py-evm/pull/1378>`_: Bugfix: Fix address generation for ``CREATE2`` opcode.
29+
- `#1374 <https://github.com/ethereum/py-evm/pull/1374>`_: Maintenance: New ``ChainTipMonitor`` service to keep track of the highest TD chain tip.
30+
- `#1371 <https://github.com/ethereum/py-evm/pull/1371>`_: Maintenance: Upgrade ``mypy`` to ``0.630``
31+
- `#1367 <https://github.com/ethereum/py-evm/pull/1367>`_: Maintenance: Improve logging output to include more contextual information
32+
- `#1361 <https://github.com/ethereum/py-evm/pull/1361>`_: Maintenance: Remove ``HeaderRequestingPeer`` in favor of ``BaseChainPeer``
33+
- `#1353 <https://github.com/ethereum/py-evm/pull/1353>`_: Maintenance: Decouple peer message handling from syncing.
34+
- `#1351 <https://github.com/ethereum/py-evm/pull/1351>`_: Bugfix: Unhandled ``DecryptionError``
35+
- `#1348 <https://github.com/ethereum/py-evm/pull/1348>`_: Maintenance: Add default server URIs for mainnet and ropsten.
36+
- `#1347 <https://github.com/ethereum/py-evm/pull/1347>`_: Maintenance: Improve code organization within ``trinity`` module
37+
- `#1343 <https://github.com/ethereum/py-evm/pull/1343>`_: Bugfix: Rename ``Chain.network_id`` to be ``Chain.chain_id``
38+
- `#1342 <https://github.com/ethereum/py-evm/pull/1342>`_: Maintenance: Internal rename of ``ChainConfig`` to ``TrinityConfig``
39+
- `#1336 <https://github.com/ethereum/py-evm/pull/1336>`_: Maintenance: Implement plugin for EthStats reporting.
40+
- `#1335 <https://github.com/ethereum/py-evm/pull/1335>`_: Maintenance: Relax some constraints on the ordered task management constructs.
41+
- `#1332 <https://github.com/ethereum/py-evm/pull/1332>`_: Maintenance: Upgrade ``pyrlp`` to ``1.0.3``
42+
- `#1317 <https://github.com/ethereum/py-evm/pull/1317>`_: Maintenance: Extract peer selection from the header sync.
43+
- `#1312 <https://github.com/ethereum/py-evm/pull/1312>`_: Maintenance: Turn on warnings by default if in a prerelease
44+
445
0.1.0-alpha.16
546
--------------
647

setup_trinity.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
name='trinity',
88
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
99
# NOT CURRENTLY APPLICABLE. VERSION BUMPS MANUAL FOR NOW
10-
version='0.1.0-alpha.16',
10+
version='0.1.0-alpha.17',
1111
description='The Trinity Ethereum Client',
1212
author='Ethereum Foundation',
1313
author_email='[email protected]',
@@ -16,7 +16,7 @@
1616
py_modules=[],
1717
install_requires=[
1818
# DON'T FORGET TO BUMP THIS TOOOOOO!!!!!!!
19-
'py-evm[trinity,p2p]==0.2.0a33',
19+
'py-evm[trinity,p2p]==0.2.0a34',
2020
],
2121
license='MIT',
2222
zip_safe=False,
@@ -29,7 +29,7 @@
2929
'Natural Language :: English',
3030
'Programming Language :: Python :: 3.6',
3131
],
32-
python_requires=">=3.6,<4"
32+
python_requires=">=3.6,<4",
3333
# trinity
3434
entry_points={
3535
'console_scripts': ['trinity=trinity:main'],

0 commit comments

Comments
 (0)