Skip to content

Commit

Permalink
Bump version and reconstruct history from git log in read-me
Browse files Browse the repository at this point in the history
  • Loading branch information
ushkarev committed Jun 11, 2020
1 parent e17a9d8 commit abaf6e5
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 4 deletions.
49 changes: 46 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,58 @@ Development
.. image:: https://travis-ci.org/ministryofjustice/govuk-bank-holidays.svg?branch=master
:target: https://travis-ci.org/ministryofjustice/govuk-bank-holidays

.. image:: https://github.com/ministryofjustice/govuk-bank-holidays/workflows/Run%20tests/badge.svg?branch=master
:target: https://github.com/ministryofjustice/govuk-bank-holidays/actions

Please report bugs and open pull requests on `GitHub`_.

Update translation files using ``python setup.py makemessages``, e.g. when updating the i18n module or when adding new languages.
Compile them using ``python setup.py compilemessages``; this is *required* before testing and distribution.

Use ``python setup.py compilemessages test`` to run all tests.
Use ``python setup.py compilemessages test`` to run all tests locally.

Distribute a new version by:

- updating the ``VERSION`` tuple in ``govuk_bank_holidays``
- adding a note to the `History`_
- creating a release on GitHub which triggers an upload to PYPI

Alternatively, run ``python setup.py compilemessages sdist bdist_wheel upload`` locally.

History
-------

0.8
The library does not differ from 0.7.
This release is the first to use GitHub Actions to automatically publish to PYPI.

0.7
Minor documentation update.

0.6
Updated cached bank holidays file to include latest holidays published by GOV.UK.
Added python 3.8 to testing matrix.
Minor documentation update.

0.5
Updated cached bank holidays file to include latest holidays published by GOV.UK.

0.4
Updated cached bank holidays file to include latest holidays published by GOV.UK.
Added python 3.7 to testing matrix.
Documentation improved.

0.3
Improved testing.
Library unchanged.

0.2
Updated cached bank holidays file to include latest holidays published by GOV.UK.
Added option to force use of cached file.
Added next work day calculation.

Distribute a new version by updating the ``VERSION`` tuple in ``govuk_bank_holidays`` and
run ``python setup.py compilemessages sdist bdist_wheel upload``.
0.1
Initial release.

Copyright
---------
Expand Down
2 changes: 1 addition & 1 deletion govuk_bank_holidays/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (0, 7)
VERSION = (0, 8)
__version__ = '.'.join(map(str, VERSION))
__author__ = 'Ministry of Justice Digital & Technology'

0 comments on commit abaf6e5

Please sign in to comment.