Skip to content

Commit 5b202a7

Browse files
committed
Version Bump to v1.0.1
1 parent 3b85b42 commit 5b202a7

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

coc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
SOFTWARE.
2323
"""
2424

25-
__version__ = "1.0.0a"
25+
__version__ = "1.0.1"
2626

2727
from .abc import BasePlayer, BaseClan
2828
from .clans import RankedClan, Clan

docs/miscellaneous/changelog.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ Changelog
77
This page keeps a fairly detailed, human readable version
88
of what has changed, and whats new for each version of the lib.
99

10+
v1.0.1
11+
------
12+
13+
- Maintenance event poller logic has been reworked to enable the use of :class:`EventsClient` without any player/clan/war
14+
updates.
15+
16+
- 5min preparation time has been included in the list of valid prep times for friendly wars.
17+
18+
- The warlog example has been updated to properly close the client, and a typo fixed in the README example.
19+
20+
- The ``correct_tags`` parameter has been changed to default to ``True``. There is no side-effects of having this enabled.
21+
1022
v1.0
1123
-----
1224
Please see :ref:`migrating_to_v1_0` for more info, as the change-set is too large to describe here.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
with open(os.path.join(os.getcwd(), "requirements.txt")) as f:
88
REQUIREMENTS = f.read().splitlines()
99

10-
VERSION = "1.0.0a"
10+
VERSION = "1.0.1"
1111
if "a" in VERSION:
1212
VERSION += "+" + subprocess.check_output(["git", "rev-parse", "--short", "HEAD"]).decode("utf-8").strip()
1313

0 commit comments

Comments
 (0)