Skip to content

Commit

Permalink
Release script improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Apr 2, 2024
1 parent deb1d0d commit 11b76b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
8 changes: 1 addition & 7 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Release process
===============

* Tests, including linters and check-manifest
* Tests, including linters

* Update CHANGELOG.rst, removing "(in development)" and adding date

Expand All @@ -16,12 +16,6 @@ Release process

./release.sh

* Tag the release e.g.::

git tag v0.3

* Update the version numbers again, moving to the next release, and adding "-dev1"

* Add new section to HISTORY.rst

* ``git push --tags``
3 changes: 3 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ python3 setup.py bdist_wheel --python-tag=py3 || exit 1

VERSION=$(./setup.py --version) || exit 1
twine upload dist/fluent_compiler-$VERSION.tar.gz dist/fluent_compiler-$VERSION-py3-none-any.whl || exit 1
git tag v$VERSION || exit 1
git push || exit 1
git push --tags || exit 1

0 comments on commit 11b76b6

Please sign in to comment.