diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e3af64..c7756aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.7.0](https://github.com/ooliver1/mafic/compare/v2.6.0...v2.7.0) (2023-06-02) + + +### Features + +* **pool:** support re-adding nodes ([d2b35da](https://github.com/ooliver1/mafic/commit/d2b35da2bd4539bd81514ec21c24dba6306060b1)) + ## [2.6.0](https://github.com/ooliver1/mafic/compare/v2.5.0...v2.6.0) (2023-06-01) diff --git a/mafic/__init__.py b/mafic/__init__.py index d62ec5d..5badf61 100644 --- a/mafic/__init__.py +++ b/mafic/__init__.py @@ -27,7 +27,7 @@ __author__ = "ooliver1" __license__ = "MIT" __copyright__ = "Copyright 2022-present ooliver1" -__version__ = "2.6.0" +__version__ = "2.7.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 1f9dae4..7661f50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mafic" -version = "2.6.0" +version = "2.7.0" description = "A properly typehinted lavalink client for discord.py, nextcord, disnake and py-cord." authors = ["ooliver1 "] license = "MIT"