Skip to content

Commit ea91a0e

Browse files
committed
📦️ (OpenAPI) Update OpenAPI version in projects to 3.0.3
1 parent e8a8c3e commit ea91a0e

File tree

2 files changed

+2
-2
lines changed
  • project

2 files changed

+2
-2
lines changed

project/03-items-stores-smorest/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
app.config["PROPAGATE_EXCEPTIONS"] = True
1111
app.config["API_TITLE"] = "Stores REST API"
1212
app.config["API_VERSION"] = "v1"
13-
app.config["OPENAPI_VERSION"] = "3.0.2"
13+
app.config["OPENAPI_VERSION"] = "3.0.3"
1414
app.config["OPENAPI_URL_PREFIX"] = "/"
1515
app.config["OPENAPI_SWAGGER_UI_PATH"] = "/swagger-ui"
1616
app.config["OPENAPI_SWAGGER_UI_URL"] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist/"

project/using-flask-smorest/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
app = Flask(__name__)
1515
app.config["API_TITLE"] = "Stores REST API"
1616
app.config["API_VERSION"] = "v1"
17-
app.config["OPENAPI_VERSION"] = "3.0.2"
17+
app.config["OPENAPI_VERSION"] = "3.0.3"
1818
app.config["OPENAPI_URL_PREFIX"] = "/"
1919
app.config["OPENAPI_SWAGGER_UI_PATH"] = "/swagger-ui"
2020
app.config["OPENAPI_SWAGGER_UI_URL"] = "https://cdn.jsdelivr.net/npm/swagger-ui-dist/"

0 commit comments

Comments
 (0)