From 75d24bf5d4c0063c5d367190bafe2c6f598ecd7e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 13:17:22 +0000 Subject: [PATCH] Release extension version 0.4.5 (#77) Co-authored-by: cjlapao --- helm/Chart.yaml | 4 ++-- src/docs/docs.go | 2 +- src/docs/swagger.json | 2 +- src/docs/swagger.yaml | 2 +- src/main.go | 12 ++++++------ version.json | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index bfcb189b..0c19aa22 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -15,5 +15,5 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: "0.4.4" -appVersion: "0.4.4" +version: "0.4.5" +appVersion: "0.4.5" diff --git a/src/docs/docs.go b/src/docs/docs.go index 4ef02190..a323e43a 100644 --- a/src/docs/docs.go +++ b/src/docs/docs.go @@ -6392,7 +6392,7 @@ const docTemplate = `{ // SwaggerInfo holds exported Swagger Info so clients can modify it var SwaggerInfo = &swag.Spec{ - Version: "0.4.4", + Version: "0.4.5", Host: "", BasePath: "/api", Schemes: []string{}, diff --git a/src/docs/swagger.json b/src/docs/swagger.json index fdfdb390..9b183206 100644 --- a/src/docs/swagger.json +++ b/src/docs/swagger.json @@ -13,7 +13,7 @@ "name": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0.html" }, - "version": "0.4.4" + "version": "0.4.5" }, "basePath": "/api", "paths": { diff --git a/src/docs/swagger.yaml b/src/docs/swagger.yaml index 995c8c7e..e6e3ea83 100644 --- a/src/docs/swagger.yaml +++ b/src/docs/swagger.yaml @@ -1323,7 +1323,7 @@ info: url: http://www.apache.org/licenses/LICENSE-2.0.html termsOfService: http://swagger.io/terms/ title: Parallels Desktop API - version: 0.4.4 + version: 0.4.5 paths: /health/probe: get: diff --git a/src/main.go b/src/main.go index c142e701..680de58a 100644 --- a/src/main.go +++ b/src/main.go @@ -6,11 +6,11 @@ import ( "github.com/cjlapao/common-go/version" ) -var ver = "0.4.4" +var ver = "0.4.5" var versionSvc = version.Get() // @title Parallels Desktop API -// @version 0.4.4 +// @version 0.4.5 // @description Parallels Desktop API Service // @termsOfService http://swagger.io/terms/ @@ -26,10 +26,10 @@ var versionSvc = version.Get() // @in header // @name X-Api-Key -// @securityDefinitions.apikey BearerAuth -// @description Type "Bearer" followed by a space and JWT token. -// @in header -// @name Authorization +// @securityDefinitions.apikey BearerAuth +// @description Type "Bearer" followed by a space and JWT token. +// @in header +// @name Authorization func main() { versionSvc.Author = "Carlos Lapao" versionSvc.Name = "Parallels Desktop API Service" diff --git a/version.json b/version.json index fe2e6d5f..77e9232b 100644 --- a/version.json +++ b/version.json @@ -1,3 +1,3 @@ { - "version": "0.4.4" + "version": "0.4.5" }