diff --git a/CHANGELOG.md b/CHANGELOG.md index 40c79ec..3f9a97c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.1.0](https://github.com/ooliver1/mafic/compare/v1.0.3...v1.1.0) (2023-02-12) + + +### Features + +* allow players to not be disconnected by library ([283485d](https://github.com/ooliver1/mafic/commit/283485df6fa8722266e5d72001a1e3a108d42195)) + ## [1.0.3](https://github.com/ooliver1/mafic/compare/v1.0.2...v1.0.3) (2023-02-12) diff --git a/mafic/__init__.py b/mafic/__init__.py index 5436f71..430753f 100644 --- a/mafic/__init__.py +++ b/mafic/__init__.py @@ -30,7 +30,7 @@ __author__ = "ooliver1" __license__ = "MIT" __copyright__ = "Copyright 2022-present ooliver1" -__version__ = "1.0.3" +__version__ = "1.1.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 7f0bf9a..075d58f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mafic" -version = "1.0.3" +version = "1.1.0" description = "A properly typehinted lavalink client for discord.py, nextcord, disnake and py-cord." authors = ["ooliver1 "] license = "MIT"