From 8c7d6a04c3c9214c0f6a1b034de1308bcac0d21d Mon Sep 17 00:00:00 2001 From: lukasthaler Date: Tue, 27 Feb 2024 18:26:16 +0100 Subject: [PATCH] chore: bump versions & add release notes --- coc/__init__.py | 2 +- docs/conf.py | 2 +- docs/miscellaneous/changelog.rst | 14 ++++++++++++++ pyproject.toml | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/coc/__init__.py b/coc/__init__.py index 972537fa..4a0b59c5 100644 --- a/coc/__init__.py +++ b/coc/__init__.py @@ -22,7 +22,7 @@ SOFTWARE. """ -__version__ = "3.2.1" +__version__ = "3.3.0" from .abc import BasePlayer, BaseClan from .clans import RankedClan, Clan diff --git a/docs/conf.py b/docs/conf.py index 36d4aea8..28ab5b57 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ project = 'coc' copyright = '2022, mathsman5133' author = 'mathsman5133' -release = '3.2.1' +release = '3.3.0' # -- 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 cbc77ca5..397814c9 100644 --- a/docs/miscellaneous/changelog.rst +++ b/docs/miscellaneous/changelog.rst @@ -7,6 +7,20 @@ Changelog This page keeps a fairly detailed, human readable version of what has changed, and whats new for each version of the lib. +v3.3.0 +------ + +Additions: +~~~~~~~~~~ +- Added dedicated enums for elixir/dark elixir troops and spells: `coc.ELIXIR_TROOP_ORDER`, + `coc.DARK_ELIXIR_TROOP_ORDER`, `coc.ELIXIR_SPELL_ORDER` and `coc.DARK_ELIXIR_SPELL_ORDER` +- Added the new Overgrowth Spell +- Added the new equipment introduced since the last release (up to and including the February 2024 update) + +Bugs Fixed: +~~~~~~~~~~~ +- The Root Rider is now correctly sorted with the elixir troops + v3.2.1 ------ diff --git a/pyproject.toml b/pyproject.toml index 48a40d58..3affe935 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.2.1" +version = "3.3.0" description = "A python wrapper for the Clash of Clans API" requires-python = ">=3.7.3" readme = "README.rst"