diff --git a/coc/__init__.py b/coc/__init__.py index 5fa8f940..c1cf9047 100644 --- a/coc/__init__.py +++ b/coc/__init__.py @@ -22,7 +22,7 @@ SOFTWARE. """ -__version__ = "3.7.0" +__version__ = "3.7.1" from .abc import BasePlayer, BaseClan from .clans import RankedClan, Clan diff --git a/docs/conf.py b/docs/conf.py index 856a0083..8b87b28e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ project = 'coc' copyright = '2022, mathsman5133' author = 'mathsman5133' -release = '3.7.0' +release = '3.7.1' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/docs/miscellaneous/changelog.rst b/docs/miscellaneous/changelog.rst index 81bd9ac0..7198a4a4 100644 --- a/docs/miscellaneous/changelog.rst +++ b/docs/miscellaneous/changelog.rst @@ -7,6 +7,18 @@ Changelog This page keeps a fairly detailed, human readable version of what has changed, and whats new for each version of the lib. +v3.7.1 +------ + +Additions: +~~~~~~~~~~ +- Added the new Magic Mirror equipment to :class:`coc.EQUIPMENT` +- updated static data + +Bugs Fixed: +~~~~~~~~~~~ +- Fixed a bug that would cause coc.py to break if a request was sent with an empty string for a tag + v3.7.0 ------ diff --git a/pyproject.toml b/pyproject.toml index dc37ff7a..b85d83e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "coc.py" authors = [{ name = "mathsman5133" }] maintainers = [{ name = "majordoobie" }, { name = "MagicTheDev" }, { name = "Kuchenmampfer" }, { name = "lukasthaler"}, { name = "doluk"}] -version = "3.7.0" +version = "3.7.1" description = "A python wrapper for the Clash of Clans API" requires-python = ">=3.7.3" readme = "README.rst"