moonraker: add extensions to core components
Bump the API patch version with the addition of the extension APIs. Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
236a7a7736
commit
a79e0eeef2
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue