Skip to content

Commit 9226627

Browse files
committed
Version Bump to v0.3.3
1 parent 778d4f6 commit 9226627

File tree

3 files changed

+21
-2
lines changed

3 files changed

+21
-2
lines changed

coc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:license: MIT, see LICENSE for more details.
99
1010
"""
11-
__version__ = "0.3.2"
11+
__version__ = "0.3.3"
1212

1313
from .cache import Cache, CacheConfig, DefaultCache, MaxSizeCache, TimeToLiveCache
1414

docs/changelog.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ 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+
v0.3.3
11+
-------
12+
Breaking Changes
13+
~~~~~~~~~~~~~~~~~~
14+
- ``SearchPlayer.versus_attacks_wins`` has been renamed to ``SearchPlayer.versus_attack_wins``.
15+
- The ``on_player_versus_attacks_change`` event has been renamed to ``on_player_versus_attack_change`` to match the above change.
16+
- There was a typo with the spelling of the ``coc.Maintenance`` exception. It has been renamed from ``coc.Maitenance`` to ``coc.Maintenance``.
17+
18+
New Things
19+
~~~~~~~~~~~
20+
- Add a default `Unranked` league to ``BasicPlayer.league``.
21+
- Added TH13 content.
22+
23+
BugFixes
24+
~~~~~~~~~
25+
- Fixed ``client.get_members`` raising ``AttributeError`` if no clan is found in the cache.
26+
- ``client.get_warlog`` was only returning league wars. This has been fixed.
27+
28+
1029
v0.3.2
1130
-------
1231
New Features.

setup.py

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

8-
VERSION = "0.3.2"
8+
VERSION = "0.3.3"
99

1010
README = ""
1111
with open("README.rst") as f:

0 commit comments

Comments
 (0)