From f0840b897ecc5ba62ba481d2955465df023a9406 Mon Sep 17 00:00:00 2001 From: Oliver Wilkes Date: Mon, 18 Dec 2023 21:22:43 +0000 Subject: [PATCH] chore(master): release 2.10.0 (#101) --- CHANGELOG.md | 16 ++++++++++++++++ mafic/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8081757..30d85c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [2.10.0](https://github.com/ooliver1/mafic/compare/v2.9.3...v2.10.0) (2023-12-18) + + +### Features + +* **node:** support unavailable node handling ([#98](https://github.com/ooliver1/mafic/issues/98)) ([a26cfa4](https://github.com/ooliver1/mafic/commit/a26cfa4e6671df62429151b4396e22a8af7c2237)) + + +### Bug Fixes + +* **events:** re-support v3 LOAD_FAILED endreason ([1c54ceb](https://github.com/ooliver1/mafic/commit/1c54ceb7248e5c8f653c1317a215cdc6a1e3a358)) +* **player:** fix Player._connected isn't True after Player.connect() ([#99](https://github.com/ooliver1/mafic/issues/99)) ([5304cde](https://github.com/ooliver1/mafic/commit/5304cde4e4aef256fed8d05013ca77f0aff141c2)) +* **pool:** cast supporting 3.8 ([fb529bf](https://github.com/ooliver1/mafic/commit/fb529bfea2b2c84976ea7d2941f305118a2050f7)) +* **strategy:** where did commit f25b84f go ([89204ac](https://github.com/ooliver1/mafic/commit/89204ac3625cc291cc705022d17bb413bbb33d6a)) +* support 3.8 again lol ([8b4bd4a](https://github.com/ooliver1/mafic/commit/8b4bd4a6443f08c3d9fe4641797f0251a26a78ad)) + ## [2.9.3](https://github.com/ooliver1/mafic/compare/v2.9.2...v2.9.3) (2023-08-28) diff --git a/mafic/__init__.py b/mafic/__init__.py index fb17519..502ba73 100644 --- a/mafic/__init__.py +++ b/mafic/__init__.py @@ -27,7 +27,7 @@ __author__ = "ooliver1" __license__ = "MIT" __copyright__ = "Copyright 2022-present ooliver1" -__version__ = "2.9.3" +__version__ = "2.10.0" """The current version of mafic, using `PEP 440`_ format. .. _PEP 440: https://peps.python.org/pep-0440/ diff --git a/pyproject.toml b/pyproject.toml index 6809cf4..6339e48 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mafic" -version = "2.9.3" +version = "2.10.0" description = "A properly typehinted lavalink client for discord.py, nextcord, disnake and py-cord." authors = ["ooliver1 "] license = "MIT"