Skip to content

Commit

Permalink
Version Bump to v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mathsman5133 committed Apr 22, 2021
1 parent e1bae56 commit d21e5e3
Show file tree
Hide file tree
Showing 3 changed files with 7 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.2.0"
__version__ = "1.2.1"

from .abc import BasePlayer, BaseClan
from .clans import RankedClan, Clan
Expand Down
5 changes: 5 additions & 0 deletions docs/miscellaneous/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Changelog
This page keeps a fairly detailed, human readable version
of what has changed, and whats new for each version of the lib.

v1.2.1
------
- Fixes an issue where `Clan.members` was empty if `Clan.get_member` was called before `Clan.members`.
There was a similar issue with `Player.heroes` and `Player.spells`.

v1.2.0
------

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.2.0"
VERSION = "1.2.1"
if "a" in VERSION:
VERSION += "+" + subprocess.check_output(["git", "rev-parse", "--short", "HEAD"]).decode("utf-8").strip()

Expand Down

0 comments on commit d21e5e3

Please sign in to comment.