Skip to content
This repository has been archived by the owner on Mar 29, 2022. It is now read-only.

Commit

Permalink
More release instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
vfaronov committed Jan 14, 2017
1 parent 55c7038 commit 1e4c265
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions HACKING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -181,13 +181,17 @@ Releasing a new version
replace the "Unreleased" heading in ``CHANGELOG.rst``
with "<version> - <release date>", e.g. "0.12.0 - 2016-08-14".

#. Commit as necessary.
#. Commit as necessary, for example::

$ git commit -am 'Version 0.12.0'

#. Apply a Git tag equal to the version number, for example::

$ git tag -a 0.12.0
$ git tag -a 0.12.0 -m 'Version 0.12.0'

#. Push master and tags::

#. Push master and tags.
$ git push --tags origin master

#. Watch as Travis builds and uploads stuff to PyPI.

Expand All @@ -204,7 +208,10 @@ Releasing a new version
#. Bump the version number in ``httpolice/__metadata__.py``
(e.g. 0.12.0 → 0.13.0.dev1).

#. Commit and push.
#. Commit and push::

$ git commit -am 'Bump version to 0.13.0.dev1'
$ git push


Maintenance
Expand Down

0 comments on commit 1e4c265

Please sign in to comment.