File tree 3 files changed +15
-2
lines changed
3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,13 @@ release: clean
55
55
twine upload dist/*
56
56
git config commit.gpgSign " $( CURRENT_SIGN_SETTING) "
57
57
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
+
58
65
sdist : clean
59
66
python setup.py sdist bdist_wheel
60
67
ls -l dist
Original file line number Diff line number Diff line change 7
7
name = 'trinity' ,
8
8
# *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility.
9
9
# NOT CURRENTLY APPLICABLE. VERSION BUMPS MANUAL FOR NOW
10
- version = '0.1.0-alpha.11 ' ,
10
+ version = '0.1.0-alpha.12 ' ,
11
11
description = 'The Trinity Ethereum Client' ,
12
12
author = 'Ethereum Foundation' ,
13
13
author_email = 'piper@pipermerriam.com' ,
16
16
py_modules = [],
17
17
install_requires = [
18
18
# DON'T FORGET TO BUMP THIS TOOOOOO!!!!!!!
19
- 'py-evm[trinity,p2p]==0.2.0a26 ' ,
19
+ 'py-evm[trinity,p2p]==0.2.0a28 ' ,
20
20
],
21
21
license = 'MIT' ,
22
22
zip_safe = False ,
Original file line number Diff line number Diff line change
1
+ # Release Process
1
2
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 `
2
8
3
9
4
10
## Environment Configuration
You can’t perform that action at this time.
0 commit comments