Skip to content

Commit

Permalink
More release fixes
Browse files Browse the repository at this point in the history
Updated HISTORY.rst, CONTRIBUTING.rst and setup.cfg
  • Loading branch information
elmotec committed May 31, 2021
1 parent 796f22a commit 727d097
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,12 @@ A reminder for the maintainers on how to deploy.
Make sure all your changes are committed (including an entry in HISTORY.rst).
Then run::

$ python setup.py test # there should be no errors.
$ tox -p # there should be no errors.
$ vim HISTORY.rst
$ bump2version patch # possible: major / minor / patch.
$ vim setup.cfg # bump2version does not update all references.
$ git push
$ git tag vx.y.z
$ git push --tags
$ python setup.py sdist # will generate new .tar.gz in dist folder.
$ twine check dist/<dist>.tar.gz # status should be Passed
Expand Down
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
History
=======

0.11.4 (2021-05-31)
--------------------
* Now handles errors generated by git show (e.g. attempt to retrieve content for deleted file).

0.11.3 (2021-01-30)
--------------------
* Added cm.get_log function for concistency with the rest of the interface.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ tag = False
[metadata]
name = codemetrics
summary = SCM mining utility classes
version = 0.11.3
version = 0.11.4
author = elmotec
author_email = elmotec@gmx.com
description-file =
Expand Down

0 comments on commit 727d097

Please sign in to comment.