File tree 2 files changed +13
-4
lines changed 2 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 1
- __version__ = '0.4.0 '
1
+ __version__ = '0.4.1DEV '
Original file line number Diff line number Diff line change 1
- # trigger release!
2
- # dont change any files besides CHANGELOG.txt and __init__.py during procedure.
3
1
2
+
3
+ # you can manualy merge into main and tag, after you've prepared the release in develop
4
+
5
+ # git flow
4
6
git flow release start xxxx
5
7
version bump in admin_sort/__init__.py
6
8
last chance to update CHANGELOG!
7
9
git commit -am'version bump / changelog'
8
10
git flow release finish xxxx
11
+
12
+ # triggers release
9
13
git push --all; git push --tags
10
14
# upstream: depends
11
15
git push upstream --all; git push upstream --tags
16
+
17
+ # DEV again
18
+ set x.x.xDEV release in __init__.py
19
+
20
+
21
+ # done in github actions now
12
22
python setup.py sdist && python setup.py bdist_wheel --universal
13
23
python setup.py register -r pypitest && twine upload dist/* -r pypitest
14
24
python setup.py register -r pypi && twine upload dist/* -r pypi
15
25
16
- set x.x.xDEV release in __init__.py
You can’t perform that action at this time.
0 commit comments