File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change 1
1
Release process
2
2
===============
3
3
4
- * Tests, including linters and check-manifest
4
+ * Tests, including linters
5
5
6
6
* Update CHANGELOG.rst, removing "(in development)" and adding date
7
7
@@ -16,12 +16,6 @@ Release process
16
16
17
17
./release.sh
18
18
19
- * Tag the release e.g.::
20
-
21
- git tag v0.3
22
-
23
19
* Update the version numbers again, moving to the next release, and adding "-dev1"
24
20
25
21
* Add new section to HISTORY.rst
26
-
27
- * ``git push --tags ``
Original file line number Diff line number Diff line change @@ -17,3 +17,6 @@ python3 setup.py bdist_wheel --python-tag=py3 || exit 1
17
17
18
18
VERSION=$( ./setup.py --version) || exit 1
19
19
twine upload dist/fluent_compiler-$VERSION .tar.gz dist/fluent_compiler-$VERSION -py3-none-any.whl || exit 1
20
+ git tag v$VERSION || exit 1
21
+ git push || exit 1
22
+ git push --tags || exit 1
You can’t perform that action at this time.
0 commit comments