Skip to content

Commit

Permalink
Version Bump to v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mathsman5133 committed Oct 13, 2020
1 parent 3b85b42 commit 5b202a7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion coc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
SOFTWARE.
"""

__version__ = "1.0.0a"
__version__ = "1.0.1"

from .abc import BasePlayer, BaseClan
from .clans import RankedClan, Clan
Expand Down
12 changes: 12 additions & 0 deletions docs/miscellaneous/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down

0 comments on commit 5b202a7

Please sign in to comment.