Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix super hog army id key #261

Merged
merged 3 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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__ = "3.8.3"
__version__ = "3.8.4"

from .abc import BasePlayer, BaseClan
from .clans import RankedClan, Clan
Expand Down
2 changes: 1 addition & 1 deletion coc/static/troop_ids.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"Super Minion": "84",
"Electro Titan": "95",
"Apprentice Warden": "97",
"Super Hog": "98",
"Super Hog Rider": "98",
"Root Rider": "110",
"Druid" : "123",
"Thrower" : "132",
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
project = 'coc'
copyright = '2022, mathsman5133'
author = 'mathsman5133'
release = '3.8.3'
release = '3.8.4'


# -- General configuration ---------------------------------------------------
Expand Down
9 changes: 8 additions & 1 deletion docs/miscellaneous/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,19 @@ Changelog
This page keeps a fairly detailed, human readable version
of what has changed, and whats new for each version of the lib.

v3.8.4
------

Bugs Fixed:
~~~~~~~~~~~
- Fixed a bug in army ids where "Super Hog Rider" was defined as "Super Hog"

v3.8.3
------

Bugs Fixed:
~~~~~~~~~~~
- Fixed a bug in serveral war related endpoints that passed realtime twice to the http client.
- Fixed a bug in several war related endpoints that passed realtime twice to the http client.

v3.8.2
------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "coc.py"
authors = [{ name = "mathsman5133" }]
maintainers = [{ name = "majordoobie" }, { name = "MagicTheDev" }, { name = "Kuchenmampfer" },
{ name = "lukasthaler"}, { name = "doluk"}]
version = "3.8.3"
version = "3.8.4"
description = "A python wrapper for the Clash of Clans API"
requires-python = ">=3.7.3"
readme = "README.rst"
Expand Down
Loading