Skip to content

Commit 284e982

Browse files
committed
Trinity v0.1.0-alpha.12 Release
1 parent 0ed9d6c commit 284e982

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

Makefile

+7
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ release: clean
5555
twine upload dist/*
5656
git config commit.gpgSign "$(CURRENT_SIGN_SETTING)"
5757

58+
release-trinity: clean
59+
CURRENT_SIGN_SETTING=$(git config commit.gpgSign)
60+
git config commit.gpgSign true
61+
python setup_trinity.py sdist bdist_wheel
62+
twine upload dist/*
63+
git config commit.gpgSign "$(CURRENT_SIGN_SETTING)"
64+
5865
sdist: clean
5966
python setup.py sdist bdist_wheel
6067
ls -l dist

setup_trinity.py

+2-2
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.11',
10+
version='0.1.0-alpha.12',
1111
description='The Trinity Ethereum Client',
1212
author='Ethereum Foundation',
1313
author_email='piper@pipermerriam.com',
@@ -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.0a26',
19+
'py-evm[trinity,p2p]==0.2.0a28',
2020
],
2121
license='MIT',
2222
zip_safe=False,

trinity/README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1+
# Release Process
12

3+
1. Populate CHANGELOG
4+
2. Release `py-evm`
5+
3. Bump py-evm dependency version in `setup_trinity.py`
6+
3. Manual bump of trinity version in `setup_trinity.py`
7+
4. Release `trinity`
28

39

410
## Environment Configuration

0 commit comments

Comments
 (0)