diff --git a/duckypad_twitch/__about__.py b/duckypad_twitch/__about__.py index 79e35de..18a032f 100644 --- a/duckypad_twitch/__about__.py +++ b/duckypad_twitch/__about__.py @@ -1,4 +1,4 @@ # SPDX-FileCopyrightText: 2023-present onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> # # SPDX-License-Identifier: MIT -__version__ = '1.0.3' +__version__ = '1.0.4' diff --git a/duckypad_twitch/obsws.py b/duckypad_twitch/obsws.py index ed37117..c329f48 100644 --- a/duckypad_twitch/obsws.py +++ b/duckypad_twitch/obsws.py @@ -53,7 +53,7 @@ class OBSWS(ILayer): self.logger.error(f'{type(e).__name__}: {e}') raise - def obs_disconnect(self): + def disconnect(self): for client in (self.request, self.event): if client: client.disconnect() diff --git a/pyproject.toml b/pyproject.toml index fb1e5b8..526a327 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ dependencies = [ "xair-api>=2.4.1", "slobs_websocket@git+https://git@github.com/onyx-and-iris/slobs_websocket@v0.1.4#egg=slobs_websocket", "obsws-python>=1.7.0", - "vban-cmd>=2.5.0", + "vban-cmd>=2.5.1", ] [project.urls]