From 527d0c060cf5e4205719bdc1a77fc9625dc8aa7f Mon Sep 17 00:00:00 2001 From: Oliver Wilkes Date: Wed, 9 Nov 2022 19:20:30 +0000 Subject: [PATCH] chore(master): release 0.2.0 (#3) --- CHANGELOG.md | 21 +++++++++++++++++++++ mafic/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 792663c..81856ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [0.2.0](https://github.com/ooliver1/mafic/compare/v0.1.0...v0.2.0) (2022-11-09) + + +### Features + +* add mafic -v for version checking ([#5](https://github.com/ooliver1/mafic/issues/5)) ([3dbf5ab](https://github.com/ooliver1/mafic/commit/3dbf5abfac4753e6ecb7488a83dd2ab13c87b382)) +* add node selection/balancing ([#18](https://github.com/ooliver1/mafic/issues/18)) ([f5fc457](https://github.com/ooliver1/mafic/commit/f5fc457cf8274d4ace042e7cbf4342949ceaf7a7)) + + +### Reverts + +* "ci: ignore test bot from snyk analysis" ([92c7482](https://github.com/ooliver1/mafic/commit/92c74820b04a0271f4ff81253f3844471c6bd1c2)) + + +### Documentation + +* add documentation for contributing ([#6](https://github.com/ooliver1/mafic/issues/6)) ([81fde97](https://github.com/ooliver1/mafic/commit/81fde97b32296d109968142fdc13535e6cd56da9)) +* **contributing:** use level 3 headers for commits ([452edf2](https://github.com/ooliver1/mafic/commit/452edf27673f2a5f21cb5b5713fff8f1a6862ac4)) +* **contributing:** what a shambles ([c4be211](https://github.com/ooliver1/mafic/commit/c4be2110c70f0946f6cefab4be5e49b41a1cc0fd)) +* **readme:** add fancy new shields.io badges ([#2](https://github.com/ooliver1/mafic/issues/2)) ([1af8fa1](https://github.com/ooliver1/mafic/commit/1af8fa1f955e0ad307acc0d36838b9fabaf20603)) + ## 0.1.0 (2022-10-25) diff --git a/mafic/__init__.py b/mafic/__init__.py index 6fc5b80..8ce18fc 100644 --- a/mafic/__init__.py +++ b/mafic/__init__.py @@ -11,7 +11,7 @@ __author__ = "ooliver1" __license__ = "MIT" __copyright__ = "Copyright 2022-present ooliver1" -__version__ = "0.1.0" +__version__ = "0.2.0" import logging diff --git a/pyproject.toml b/pyproject.toml index 7cd396b..25b98d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mafic" -version = "0.1.0" +version = "0.2.0" description = "A properly typehinted lavalink client for discord.py, nextcord, disnake and py-cord." authors = ["ooliver1 "] license = "MIT"