From d2fb96bbe8299817e0dd67cb2ddbe249eb4dbbfd Mon Sep 17 00:00:00 2001 From: Igor Date: Mon, 23 Aug 2021 16:32:31 +0100 Subject: [PATCH] Bump version to 0.10 --- README.rst | 3 +++ govuk_bank_holidays/__init__.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 147418d..601b3b9 100644 --- a/README.rst +++ b/README.rst @@ -68,6 +68,9 @@ Alternatively, run ``python setup.py compilemessages sdist bdist_wheel upload`` History ------- +0.10 + Added methods to generate series of holidays and work days before/after starting from a given date. + 0.9 Added methods to find previous bank holidays / work days, mirroring the existing methods. Removed support for python versions older than 3.6. diff --git a/govuk_bank_holidays/__init__.py b/govuk_bank_holidays/__init__.py index e1570e5..1efcb03 100644 --- a/govuk_bank_holidays/__init__.py +++ b/govuk_bank_holidays/__init__.py @@ -1,3 +1,3 @@ -VERSION = (0, 9) +VERSION = (0, 10) __version__ = '.'.join(map(str, VERSION)) __author__ = 'Ministry of Justice Digital & Technology'