Skip to content

Commit 83bbd3b

Browse files
committed
increment api number
1 parent 48d52af commit 83bbd3b

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

docs/reference/openapi.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ info:
433433
name: Apache 2.0
434434
url: https://www.apache.org/licenses/LICENSE-2.0.html
435435
title: BlueAPI Control
436-
version: 1.3.0
436+
version: 1.3.1
437437
openapi: 3.1.0
438438
paths:
439439
/api/v1/devices:
@@ -826,7 +826,7 @@ paths:
826826
description: Successful Response
827827
summary: Get Devices
828828
tags:
829-
- Device
829+
- Deprecated
830830
/devices/{name}:
831831
get:
832832
deprecated: true
@@ -854,7 +854,7 @@ paths:
854854
description: Validation Error
855855
summary: Get Device By Name
856856
tags:
857-
- Device
857+
- Deprecated
858858
/environment:
859859
delete:
860860
deprecated: true
@@ -870,7 +870,7 @@ paths:
870870
description: Successful Response
871871
summary: Delete Environment
872872
tags:
873-
- Environment
873+
- Deprecated
874874
get:
875875
deprecated: true
876876
description: Get the current state of the environment, i.e. initialization state.
@@ -884,7 +884,7 @@ paths:
884884
description: Successful Response
885885
summary: Get Environment
886886
tags:
887-
- Environment
887+
- Deprecated
888888
/healthz:
889889
get:
890890
description: If able to serve this, server is live and ready for requests.
@@ -913,7 +913,7 @@ paths:
913913
description: Successful Response
914914
summary: Get Plans
915915
tags:
916-
- Plan
916+
- Deprecated
917917
/plans/{name}:
918918
get:
919919
deprecated: true
@@ -941,7 +941,7 @@ paths:
941941
description: Validation Error
942942
summary: Get Plan By Name
943943
tags:
944-
- Plan
944+
- Deprecated
945945
/python_environment:
946946
get:
947947
deprecated: true
@@ -983,7 +983,7 @@ paths:
983983
description: Validation Error
984984
summary: Get Python Environment
985985
tags:
986-
- Environment
986+
- Deprecated
987987
/tasks:
988988
get:
989989
deprecated: true
@@ -1013,7 +1013,7 @@ paths:
10131013
description: Validation Error
10141014
summary: Get Tasks
10151015
tags:
1016-
- Task
1016+
- Deprecated
10171017
post:
10181018
deprecated: true
10191019
description: Submit a task to the worker.
@@ -1045,7 +1045,7 @@ paths:
10451045
description: Validation Error
10461046
summary: Submit Task
10471047
tags:
1048-
- Task
1048+
- Deprecated
10491049
/tasks/{task_id}:
10501050
delete:
10511051
deprecated: true
@@ -1072,7 +1072,7 @@ paths:
10721072
description: Validation Error
10731073
summary: Delete Submitted Task
10741074
tags:
1075-
- Task
1075+
- Deprecated
10761076
get:
10771077
deprecated: true
10781078
description: Retrieve a task
@@ -1099,7 +1099,7 @@ paths:
10991099
description: Validation Error
11001100
summary: Get Task
11011101
tags:
1102-
- Task
1102+
- Deprecated
11031103
/worker/state:
11041104
get:
11051105
deprecated: true
@@ -1114,7 +1114,7 @@ paths:
11141114
description: Successful Response
11151115
summary: Get State
11161116
tags:
1117-
- Task
1117+
- Deprecated
11181118
put:
11191119
deprecated: true
11201120
description: "Request that the worker is put into a particular state.\nReturns\
@@ -1155,7 +1155,7 @@ paths:
11551155
description: Validation Error
11561156
summary: Set State
11571157
tags:
1158-
- Task
1158+
- Deprecated
11591159
/worker/task:
11601160
get:
11611161
deprecated: true
@@ -1169,7 +1169,7 @@ paths:
11691169
description: Successful Response
11701170
summary: Get Active Task
11711171
tags:
1172-
- Task
1172+
- Deprecated
11731173
put:
11741174
deprecated: true
11751175
description: 'Set a task to active status, the worker should begin it as soon
@@ -1200,4 +1200,4 @@ paths:
12001200
description: Validation Error
12011201
summary: Set Active Task
12021202
tags:
1203-
- Task
1203+
- Deprecated

src/blueapi/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,7 @@ class ApplicationConfig(BlueapiBaseModel):
304304
"""
305305

306306
#: API version to publish in OpenAPI schema
307-
REST_API_VERSION: ClassVar[str] = "1.3.0"
307+
REST_API_VERSION: ClassVar[str] = "1.3.1"
308308

309309
LICENSE_INFO: ClassVar[dict[str, str]] = {
310310
"name": "Apache 2.0",

0 commit comments

Comments
 (0)