mirror of
https://git.selfprivacy.org/SelfPrivacy/selfprivacy-rest-api.git
synced 2024-11-20 03:17:16 +00:00
Bump version to 1.2.0
This commit is contained in:
parent
2235358827
commit
f228db5b29
|
@ -68,7 +68,7 @@ def create_app(test_config=None):
|
|||
def spec():
|
||||
if app.config["ENABLE_SWAGGER"] == "1":
|
||||
swag = swagger(app)
|
||||
swag["info"]["version"] = "1.1.1"
|
||||
swag["info"]["version"] = "1.2.0"
|
||||
swag["info"]["title"] = "SelfPrivacy API"
|
||||
swag["info"]["description"] = "SelfPrivacy API"
|
||||
swag["securityDefinitions"] = {
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
#!/usr/bin/env python3
|
||||
"""Unassigned views"""
|
||||
import subprocess
|
||||
from flask_restful import Resource, reqparse
|
||||
from flask_restful import Resource
|
||||
|
||||
|
||||
class ApiVersion(Resource):
|
||||
|
@ -24,4 +23,4 @@ class ApiVersion(Resource):
|
|||
401:
|
||||
description: Unauthorized
|
||||
"""
|
||||
return {"version": "1.1.1"}
|
||||
return {"version": "1.2.0"}
|
||||
|
|
Loading…
Reference in a new issue