From 5b202a716c362b4a22eab0cb0004e3cc3bcfc364 Mon Sep 17 00:00:00 2001 From: mathsman5133 Date: Tue, 13 Oct 2020 17:53:32 +1100 Subject: [PATCH] Version Bump to v1.0.1 --- coc/__init__.py | 2 +- docs/miscellaneous/changelog.rst | 12 ++++++++++++ setup.py | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/coc/__init__.py b/coc/__init__.py index 615933ca..84e665e7 100644 --- a/coc/__init__.py +++ b/coc/__init__.py @@ -22,7 +22,7 @@ SOFTWARE. """ -__version__ = "1.0.0a" +__version__ = "1.0.1" from .abc import BasePlayer, BaseClan from .clans import RankedClan, Clan diff --git a/docs/miscellaneous/changelog.rst b/docs/miscellaneous/changelog.rst index faf73948..7f966be7 100644 --- a/docs/miscellaneous/changelog.rst +++ b/docs/miscellaneous/changelog.rst @@ -7,6 +7,18 @@ Changelog This page keeps a fairly detailed, human readable version of what has changed, and whats new for each version of the lib. +v1.0.1 +------ + +- Maintenance event poller logic has been reworked to enable the use of :class:`EventsClient` without any player/clan/war +updates. + +- 5min preparation time has been included in the list of valid prep times for friendly wars. + +- The warlog example has been updated to properly close the client, and a typo fixed in the README example. + +- The ``correct_tags`` parameter has been changed to default to ``True``. There is no side-effects of having this enabled. + v1.0 ----- Please see :ref:`migrating_to_v1_0` for more info, as the change-set is too large to describe here. diff --git a/setup.py b/setup.py index de4fff3b..94a2d83d 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open(os.path.join(os.getcwd(), "requirements.txt")) as f: REQUIREMENTS = f.read().splitlines() -VERSION = "1.0.0a" +VERSION = "1.0.1" if "a" in VERSION: VERSION += "+" + subprocess.check_output(["git", "rev-parse", "--short", "HEAD"]).decode("utf-8").strip()