moonraker: add announcements to core components

Bump Moonraker's the API version to 1.0.2 with the addition of new
endpoints.

Signed-off-by:  Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
Eric Callahan 2022-03-13 09:25:47 -04:00
parent b1cc766576
commit 3b208c6889
No known key found for this signature in database
GPG Key ID: 7027245FBBDDF59A
1 changed files with 2 additions and 2 deletions

View File

@ -42,12 +42,12 @@ if TYPE_CHECKING:
FlexCallback = Callable[..., Optional[Coroutine]]
_T = TypeVar("_T")
API_VERSION = (1, 0, 1)
API_VERSION = (1, 0, 2)
CORE_COMPONENTS = [
'dbus_manager', 'database', 'file_manager', 'klippy_apis',
'machine', 'data_store', 'shell_command', 'proc_stats',
'job_state', 'job_queue', 'http_client'
'job_state', 'job_queue', 'http_client', 'announcements'
]
SENTINEL = SentinelClass.get_instance()