summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorTony Hansen <tony@att.com>2022-03-12 02:50:11 +0000
committerGerrit Code Review <gerrit@onap.org>2022-03-12 02:50:11 +0000
commit58f96c18cf57b1117021cb8070d28e0388e92c56 (patch)
tree58d749267a5226d23a0ed5522aff25456cd4290c /components
parentc605d61e073961bef1fc2efcbcce40850646bdbf (diff)
parent5386335b9fa32a761a22cafdac319e169fec6896 (diff)
Merge "[PMSH] Swagger Indentation Error"
Diffstat (limited to 'components')
-rwxr-xr-xcomponents/pm-subscription-handler/Changelog.md5
-rw-r--r--components/pm-subscription-handler/pmsh_service/mod/api/pmsh_swagger.yml10
-rw-r--r--components/pm-subscription-handler/pom.xml2
-rw-r--r--components/pm-subscription-handler/setup.py2
-rw-r--r--components/pm-subscription-handler/version.properties2
5 files changed, 12 insertions, 9 deletions
diff --git a/components/pm-subscription-handler/Changelog.md b/components/pm-subscription-handler/Changelog.md
index 8225ec82..c3954df0 100755
--- a/components/pm-subscription-handler/Changelog.md
+++ b/components/pm-subscription-handler/Changelog.md
@@ -5,13 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
+## [2.2.1]
+### Changed
+* Swagger Indentation Error (DCAEGEN2-3103)
+
## [2.2.0]
### Changed
* Update Filter API (DCAEGEN2-2922)
* Cleaning up old App Config, subscription handler and it's subsequent calls (DCAEGEN2-3085)
* Create Measurement Group API (DCAEGEN2-2920)
-
## [2.1.1]
### Changed
* Fixes for Flask, MarkupSafe versions + tox (DCAEGEN2-3086)
diff --git a/components/pm-subscription-handler/pmsh_service/mod/api/pmsh_swagger.yml b/components/pm-subscription-handler/pmsh_service/mod/api/pmsh_swagger.yml
index 258ca51e..b88b9bf9 100644
--- a/components/pm-subscription-handler/pmsh_service/mod/api/pmsh_swagger.yml
+++ b/components/pm-subscription-handler/pmsh_service/mod/api/pmsh_swagger.yml
@@ -176,11 +176,11 @@ paths:
required: true
description: Name of the measurement group
type: string
- - in: "body"
- name: "body"
- required: true
- schema:
- $ref: "#/definitions/measurementGroup"
+ - name: "body"
+ in: "body"
+ required: true
+ schema:
+ $ref: "#/definitions/measurementGroup"
responses:
201:
description: Successfully created measurement group
diff --git a/components/pm-subscription-handler/pom.xml b/components/pm-subscription-handler/pom.xml
index 88ae50d5..6300dc99 100644
--- a/components/pm-subscription-handler/pom.xml
+++ b/components/pm-subscription-handler/pom.xml
@@ -32,7 +32,7 @@
<groupId>org.onap.dcaegen2.services</groupId>
<artifactId>pmsh</artifactId>
<name>dcaegen2-services-pm-subscription-handler</name>
- <version>2.2.0-SNAPSHOT</version>
+ <version>2.2.1-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonar.sources>.</sonar.sources>
diff --git a/components/pm-subscription-handler/setup.py b/components/pm-subscription-handler/setup.py
index a4a80efb..9d1aa6de 100644
--- a/components/pm-subscription-handler/setup.py
+++ b/components/pm-subscription-handler/setup.py
@@ -22,7 +22,7 @@ from setuptools import setup, find_packages
setup(
name="pm_subscription_handler",
- version="2.2.0",
+ version="2.2.1",
packages=find_packages(),
author="lego@est.tech",
author_email="lego@est.tech",
diff --git a/components/pm-subscription-handler/version.properties b/components/pm-subscription-handler/version.properties
index 3ad2137c..3843d76b 100644
--- a/components/pm-subscription-handler/version.properties
+++ b/components/pm-subscription-handler/version.properties
@@ -1,6 +1,6 @@
major=2
minor=2
-patch=0
+patch=1
base_version=${major}.${minor}.${patch}
release_version=${base_version}
snapshot_version=${base_version}-SNAPSHOT