Skip to content

Commit

Permalink
Trinity v0.1.0-alpha.12 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
pipermerriam committed Jul 24, 2018
1 parent 0ed9d6c commit 284e982
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@ release: clean
twine upload dist/*
git config commit.gpgSign "$(CURRENT_SIGN_SETTING)"

release-trinity: clean
CURRENT_SIGN_SETTING=$(git config commit.gpgSign)
git config commit.gpgSign true
python setup_trinity.py sdist bdist_wheel
twine upload dist/*
git config commit.gpgSign "$(CURRENT_SIGN_SETTING)"

sdist: clean
python setup.py sdist bdist_wheel
ls -l dist
4 changes: 2 additions & 2 deletions setup_trinity.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name='trinity',
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
# NOT CURRENTLY APPLICABLE. VERSION BUMPS MANUAL FOR NOW
version='0.1.0-alpha.11',
version='0.1.0-alpha.12',
description='The Trinity Ethereum Client',
author='Ethereum Foundation',
author_email='[email protected]',
Expand All @@ -16,7 +16,7 @@
py_modules=[],
install_requires=[
# DON'T FORGET TO BUMP THIS TOOOOOO!!!!!!!
'py-evm[trinity,p2p]==0.2.0a26',
'py-evm[trinity,p2p]==0.2.0a28',
],
license='MIT',
zip_safe=False,
Expand Down
6 changes: 6 additions & 0 deletions trinity/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
# Release Process

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


## Environment Configuration
Expand Down

0 comments on commit 284e982

Please sign in to comment.