Skip to content

Commit

Permalink
Release extension version 0.7.1 (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
cjlapao authored May 29, 2024
1 parent 9fa9b1b commit 20a5ecb
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 8 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.7.0
0.7.1
14 changes: 14 additions & 0 deletions docs/_posts/2024-05-29-v0.7.1.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
layout: post
title: "Release 0.7.1"
date: 2024-05-29 00:00:00 +0000
categories: release notes
---

# Whats New

### Added

- Adding telemetry fix and encryption of PII


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.7.0"
appVersion: "0.7.0"
version: "0.7.1"
appVersion: "0.7.1"
2 changes: 1 addition & 1 deletion src/docs/docs.go
Original file line number Diff line number Diff line change
Expand Up @@ -7518,7 +7518,7 @@ const docTemplate = `{

// SwaggerInfo holds exported Swagger Info so clients can modify it
var SwaggerInfo = &swag.Spec{
Version: "0.7.0",
Version: "0.7.1",
Host: "",
BasePath: "/api",
Schemes: []string{},
Expand Down
2 changes: 1 addition & 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.7.0"
"version": "0.7.1"
},
"basePath": "/api",
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion src/docs/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1370,7 +1370,7 @@ info:
url: http://www.apache.org/licenses/LICENSE-2.0.html
termsOfService: http://swagger.io/terms/
title: Parallels Desktop DevOps Service
version: 0.7.0
version: 0.7.1
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 @@ -15,12 +15,12 @@ import (
)

var (
ver = "0.7.0"
ver = "0.7.1"
versionSvc = version.Get()
)

// @title Parallels Desktop DevOps Service
// @version 0.7.0
// @version 0.7.1
// @description Parallels Desktop DevOps Service
// @termsOfService http://swagger.io/terms/

Expand Down

0 comments on commit 20a5ecb

Please sign in to comment.