diff options
author | Adam Spiers <git@adamspiers.org> | 2021-04-04 01:02:52 +0100 |
---|---|---|
committer | Adam Spiers <git@adamspiers.org> | 2021-04-04 01:05:22 +0100 |
commit | 66c1aeb021716c47b8b4a38a8e9cb14826bb60c0 (patch) | |
tree | 1c1e3daada95605ab3b06fd5af98bd9dc1109b3a /docs | |
parent | 3e7952c9ad4be7a1c49558671adae5b2143d5360 (diff) | |
download | git-deps-66c1aeb021716c47b8b4a38a8e9cb14826bb60c0.tar.gz |
Fix publishing procedure1.1.0
Diffstat (limited to 'docs')
-rw-r--r-- | docs/maintainer-guide.rst | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/docs/maintainer-guide.rst b/docs/maintainer-guide.rst index 6428c4d..7848265 100644 --- a/docs/maintainer-guide.rst +++ b/docs/maintainer-guide.rst @@ -27,14 +27,17 @@ How to make a new release of git-deps - Run ``tox`` to check everything is OK. -- Decide a new version. Release candidates should take the form - ``1.2.3rc4``. +- Decide a new version, e.g.:: + + version=1.1.0 + + Release candidates should take the form ``1.2.3rc4``. - ``git tag -s $version`` - ``tox -e sdist`` -- ``twine dist/git-deps-$version.tar.gz`` +- ``twine upload .tox/dist/git-deps-$version.zip`` - Check the new version appears at `<https://pypi.org/project/git-deps/>`_. |