diff --git a/CHANGELOG.md b/CHANGELOG.md index 70ae3d5..40c79ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [1.0.3](https://github.com/ooliver1/mafic/compare/v1.0.2...v1.0.3) (2023-02-12) + + +### Bug Fixes + +* check major version at runtime ([547b4b4](https://github.com/ooliver1/mafic/commit/547b4b47edbfa3b9e9e2dd36512d94a000bb7ecf)) + ## [1.0.2](https://github.com/ooliver1/mafic/compare/v1.0.1...v1.0.2) (2023-02-11) diff --git a/mafic/__init__.py b/mafic/__init__.py index fbe050d..5436f71 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.2" +__version__ = "1.0.3" """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 d846625..7f0bf9a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mafic" -version = "1.0.2" +version = "1.0.3" description = "A properly typehinted lavalink client for discord.py, nextcord, disnake and py-cord." authors = ["ooliver1 "] license = "MIT"