Skip to content

Commit

Permalink
Release extension version 0.2.5 (#38)
Browse files Browse the repository at this point in the history
Co-authored-by: cjlapao <[email protected]>
  • Loading branch information
github-actions[bot] and cjlapao authored Nov 21, 2023
1 parent a8b2433 commit 628f6bc
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
4 changes: 2 additions & 2 deletions helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.4"
appVersion: "0.2.4"
version: "0.2.5"
appVersion: "0.2.5"
5 changes: 4 additions & 1 deletion src/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -4759,6 +4759,9 @@ const docTemplate = `{
"current_state": {
"type": "string"
},
"host": {
"type": "string"
},
"id": {
"type": "string"
},
Expand Down Expand Up @@ -6201,7 +6204,7 @@ const docTemplate = `{

// SwaggerInfo holds exported Swagger Info so clients can modify it
var SwaggerInfo = &swag.Spec{
Version: "0.2.4",
Version: "0.2.5",
Host: "",
BasePath: "/api",
Schemes: []string{},
Expand Down
5 changes: 4 additions & 1 deletion src/docs/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"name": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
},
"version": "0.2.4"
"version": "0.2.5"
},
"basePath": "/api",
"paths": {
Expand Down Expand Up @@ -4752,6 +4752,9 @@
"current_state": {
"type": "string"
},
"host": {
"type": "string"
},
"id": {
"type": "string"
},
Expand Down
4 changes: 3 additions & 1 deletion src/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,8 @@ definitions:
properties:
current_state:
type: string
host:
type: string
id:
type: string
name:
Expand Down Expand Up @@ -1295,7 +1297,7 @@ info:
url: http://www.apache.org/licenses/LICENSE-2.0.html
termsOfService: http://swagger.io/terms/
title: Parallels Desktop API
version: 0.2.4
version: 0.2.5
paths:
/health/probe:
get:
Expand Down
4 changes: 2 additions & 2 deletions src/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ import (
"github.com/cjlapao/common-go/version"
)

var ver = "0.2.4"
var ver = "0.2.5"
var versionSvc = version.Get()

// @title Parallels Desktop API
// @version 0.2.4
// @version 0.2.5
// @description Parallels Desktop API Service
// @termsOfService http://swagger.io/terms/

Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "0.2.4"
"version": "0.2.5"
}

0 comments on commit 628f6bc

Please sign in to comment.