From a79e0eeef2d734a19d21282302b697b947cb521a Mon Sep 17 00:00:00 2001 From: Eric Callahan Date: Fri, 8 Apr 2022 08:21:10 -0400 Subject: [PATCH] moonraker: add extensions to core components Bump the API patch version with the addition of the extension APIs. Signed-off-by: Eric Callahan --- moonraker/moonraker.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/moonraker/moonraker.py b/moonraker/moonraker.py index e97965b..edaf270 100755 --- a/moonraker/moonraker.py +++ b/moonraker/moonraker.py @@ -43,12 +43,13 @@ if TYPE_CHECKING: FlexCallback = Callable[..., Optional[Coroutine]] _T = TypeVar("_T") -API_VERSION = (1, 0, 4) +API_VERSION = (1, 0, 5) CORE_COMPONENTS = [ 'dbus_manager', 'database', 'file_manager', 'klippy_apis', 'machine', 'data_store', 'shell_command', 'proc_stats', - 'job_state', 'job_queue', 'http_client', 'announcements' + 'job_state', 'job_queue', 'http_client', 'announcements', + 'extensions' ] SENTINEL = SentinelClass.get_instance()