Skip to content

Commit 9a75678

Browse files
committed
Version Bump
1 parent 4dd2220 commit 9a75678

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-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__ = "2.1.0"
25+
__version__ = "2.1.1"
2626

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

docs/miscellaneous/changelog.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ 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+
v2.1.1
11+
------
12+
- Support for Clan Capitals!
13+
14+
- Updated our examples
15+
16+
- Bug fixes and improvements!
17+
18+
- Fixed bug with iterating over :meth:`Clan.get_detailed_members` where player objects were missing attributes #109
19+
20+
- Cleaned up how the async loop was being managed by library #111
21+
22+
- Please be sure to create issues for any bug fixes or feature requests!
23+
24+
1025
v2.0.1
1126
------
1227
- New achievements for clan capital

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 = "2.1.0"
10+
VERSION = "2.1.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)