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:
Eric Callahan 2022-04-08 08:21:10 -04:00
parent 236a7a7736
commit a79e0eeef2
No known key found for this signature in database
GPG Key ID: 7027245FBBDDF59A
1 changed files with 3 additions and 2 deletions

View File

@ -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()