diff --git a/boticordpy/__init__.py b/boticordpy/__init__.py index 8789273..5fe812c 100644 --- a/boticordpy/__init__.py +++ b/boticordpy/__init__.py @@ -10,7 +10,7 @@ __title__ = "boticordpy" __author__ = "Marakarka" __license__ = "MIT" __copyright__ = "Copyright 2022 Marakarka" -__version__ = "2.2.2a" +__version__ = "2.2.2" from .client import BoticordClient from .webhook import Webhook diff --git a/boticordpy/client.py b/boticordpy/client.py index 84473ee..9cbdb76 100644 --- a/boticordpy/client.py +++ b/boticordpy/client.py @@ -20,14 +20,14 @@ class BoticordClient: token (:obj:`str`) Your bot's Boticord API Token. version (:obj:`int`) - BotiCord API version + BotiCord API version (Default: 2) """ __slots__ = ("http", "_autopost", "_token") http: HttpClient - def __init__(self, token: str = None, version: int = 1): + def __init__(self, token: str = None, version: int = 2): self._token = token self._autopost: typing.Optional[AutoPost] = None self.http = HttpClient(token, version) diff --git a/docs/source/conf.py b/docs/source/conf.py index 632e3f3..a79baa0 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -27,7 +27,7 @@ copyright = "2022, Victor Kotlin (Marakarka)" author = "Victor Kotlin (Marakarka)" # The full version, including alpha/beta/rc tags -release = "2.2.2a" +release = "2.2.2" # -- General configuration ---------------------------------------------------