diff options
author | egernug <gerard.nugent@est.tech> | 2022-03-10 10:14:54 +0000 |
---|---|---|
committer | egernug <gerard.nugent@est.tech> | 2022-03-11 09:37:12 +0000 |
commit | 5386335b9fa32a761a22cafdac319e169fec6896 (patch) | |
tree | d143128fe5375a3f244fca7dd23394e82a04a768 | |
parent | 36987b3ac6eccb475e9976b95a08683a86682cdc (diff) |
[PMSH] Swagger Indentation Error2.2.1-pmsh
Issue-ID: DCAEGEN2-3103
Signed-off-by: egernug <gerard.nugent@est.tech>
Change-Id: Ib6ba3aeaef26b46354961e88f08fbd0d512a5749
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 |