diff options
author | Tufman, Shay <st198j@intl.att.com> | 2018-11-21 10:18:44 +0200 |
---|---|---|
committer | Tufman, Shay <st198j@intl.att.com> | 2018-11-21 10:19:37 +0200 |
commit | 55b41e0d7f5220eb80dacc25a495afdfd4a930f1 (patch) | |
tree | 55a0da76404bfcb3e7246f992e59a76cffd6b175 | |
parent | bc0945a600e11741b86524889740b701297c986f (diff) |
fix null pointer1.4.7
Change-Id: Ie6e822ae0f416f48dc13e505191d23c38579aa55
Issue-ID: SDC-1926
Signed-off-by: Tufman, Shay <st198j@intl.att.com>
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | pom.xml | 4 | ||||
-rw-r--r-- | version.properties | 2 |
3 files changed, 8 insertions, 3 deletions
@@ -120,3 +120,8 @@ to use add the folowing depandency to your POM file: ### Bug fix: 1. **remove use of a snapshot dependency** update jtosca dependency version from snapshot to release. + +## 1.4.7 + +### Bug fix: +1. **validation fix** Null value caused to NullPointerException in validate function in DataEntity
\ No newline at end of file @@ -7,7 +7,7 @@ <artifactId>sdc-tosca</artifactId> <name>sdc-sdc-tosca</name> <description>SDC Tosca Parser JAR file for use by consumers</description> - <version>1.4.6-SNAPSHOT</version> + <version>1.4.7-SNAPSHOT</version> <packaging>jar</packaging> <properties> @@ -118,7 +118,7 @@ <dependency> <groupId>org.onap.sdc.jtosca</groupId> <artifactId>jtosca</artifactId> - <version>1.4.5</version> + <version>1.4.7</version> </dependency> diff --git a/version.properties b/version.properties index ed1cd82..442dce4 100644 --- a/version.properties +++ b/version.properties @@ -5,7 +5,7 @@ major=1 minor=4 -patch=6 +patch=7 base_version=${major}.${minor}.${patch} |