summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rw-r--r--docker/ChangeLog.md3
-rw-r--r--docker/docker-node-type.yaml2
-rw-r--r--docker/pom.xml2
-rw-r--r--docker/requirements.txt2
-rw-r--r--docker/setup.py4
5 files changed, 8 insertions, 5 deletions
diff --git a/docker/ChangeLog.md b/docker/ChangeLog.md
index 9ffbc91..053adf9 100644
--- a/docker/ChangeLog.md
+++ b/docker/ChangeLog.md
@@ -5,6 +5,9 @@ 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/).
+## [3.2.1]
+* DCAEGEN2-1086 update onap-dcae-dcaepolicy-lib version to avoid Consul stores under old service_component_name
+
## [3.2.0]
* Change requirements.txt to use a version range for dcaepolicylib
diff --git a/docker/docker-node-type.yaml b/docker/docker-node-type.yaml
index 0eddb0f..58a8856 100644
--- a/docker/docker-node-type.yaml
+++ b/docker/docker-node-type.yaml
@@ -24,7 +24,7 @@ plugins:
docker:
executor: 'central_deployment_agent'
package_name: dockerplugin
- package_version: 3.2.0
+ package_version: 3.2.1
data_types:
diff --git a/docker/pom.xml b/docker/pom.xml
index 236a4fb..5c79537 100644
--- a/docker/pom.xml
+++ b/docker/pom.xml
@@ -28,7 +28,7 @@ ECOMP is a trademark and service mark of AT&T Intellectual Property.
<groupId>org.onap.dcaegen2.platform.plugins</groupId>
<artifactId>docker</artifactId>
<name>docker-plugin</name>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.2.1-SNAPSHOT</version>
<url>http://maven.apache.org</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
diff --git a/docker/requirements.txt b/docker/requirements.txt
index 257a641..35db24e 100644
--- a/docker/requirements.txt
+++ b/docker/requirements.txt
@@ -1,2 +1,2 @@
onap-dcae-dockering==1.4.0
-onap-dcae-dcaepolicy-lib>=2.3.0,<3.0.0
+onap-dcae-dcaepolicy-lib>=2.4.1,<3.0.0
diff --git a/docker/setup.py b/docker/setup.py
index 4f521c1..d301c49 100644
--- a/docker/setup.py
+++ b/docker/setup.py
@@ -24,7 +24,7 @@ from setuptools import setup
setup(
name='dockerplugin',
description='Cloudify plugin for applications run in Docker containers',
- version="3.2.0",
+ version="3.2.1",
author='Michael Hwang, Tommy Carpenter',
packages=['dockerplugin'],
zip_safe=False,
@@ -32,6 +32,6 @@ setup(
"python-consul>=0.6.0,<1.0.0",
"onap-dcae-dockering>=1.0.0,<2.0.0",
"uuid==1.30",
- "onap-dcae-dcaepolicy-lib>=2.3.0,<3.0.0"
+ "onap-dcae-dcaepolicy-lib>=2.4.1,<3.0.0"
]
)