Skip to content

Commit 2d156a3

Browse files
committed
Patch up after rebase
1 parent 58db04e commit 2d156a3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/reference/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ info:
472472
name: Apache 2.0
473473
url: https://www.apache.org/licenses/LICENSE-2.0.html
474474
title: BlueAPI Control
475-
version: 1.2.0
475+
version: 1.3.0
476476
openapi: 3.1.0
477477
paths:
478478
/config/oidc:

src/blueapi/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ class ApplicationConfig(BlueapiBaseModel):
286286
"""
287287

288288
#: API version to publish in OpenAPI schema
289-
REST_API_VERSION: ClassVar[str] = "1.2.0"
289+
REST_API_VERSION: ClassVar[str] = "1.3.0"
290290

291291
LICENSE_INFO: ClassVar[dict[str, str]] = {
292292
"name": "Apache 2.0",

tests/system_tests/test_blueapi_system.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ def authenticated_get_methods() -> list[str]:
183183
and "self" in inspect.signature(getattr(BlueapiRestClient, method)).parameters
184184
# oidc_config and stomp config can be accessed without auth
185185
and method != "get_oidc_config"
186-
and method != "_event_bus"
186+
and method != "get_stomp_config"
187187
]
188188

189189

0 commit comments

Comments
 (0)