summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Hwang <mhwang@research.att.com>2018-03-26 11:08:58 -0400
committerMichael Hwang <mhwang@research.att.com>2018-03-26 16:34:45 -0400
commit5536545e42a15d0ab6a389b3856b390d997d3b08 (patch)
tree722ebea4143bbf96244aba220da1fa4a1b823026
parent7d9895ebb2ed0554ed8fafa5c909a9a930c3f962 (diff)
Specify dcaepolicy-lib 2.3.0 in requirements
Change-Id: I2c251e25daea18f5be723b5238a00f40e42ba142 Issue-ID: DCAEGEN2-415 Signed-off-by: Michael Hwang <mhwang@research.att.com>
-rw-r--r--docker/ChangeLog.md4
-rw-r--r--docker/docker-node-type.yaml2
-rw-r--r--docker/requirements.txt2
-rw-r--r--docker/setup.py4
4 files changed, 8 insertions, 4 deletions
diff --git a/docker/ChangeLog.md b/docker/ChangeLog.md
index 302fe6c..4fd7da1 100644
--- a/docker/ChangeLog.md
+++ b/docker/ChangeLog.md
@@ -5,6 +5,10 @@ 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.1.0]
+
+* DCAEGEN2-415 - Change requirements.txt to use dcaepolicy 2.3.0. *Apparently* this constitutes a version bump.
+
## [3.0.0]
* Update docker plugin to use dcaepolicy 2.1.0. This involved all sorts of updates in how policy is expected to work for the component where the updates are not backwards friendly.
diff --git a/docker/docker-node-type.yaml b/docker/docker-node-type.yaml
index 4798a44..75d19a1 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.0.0
+ package_version: 3.1.0
node_types:
# The DockerContainerForComponents node type is to be used for DCAE service components that
diff --git a/docker/requirements.txt b/docker/requirements.txt
index 6eff87f..5dc2f31 100644
--- a/docker/requirements.txt
+++ b/docker/requirements.txt
@@ -1,2 +1,2 @@
onap-dcae-dockering==1.4.0
-onap-dcae-dcaepolicy-lib==2.1.0
+onap-dcae-dcaepolicy-lib==2.3.0
diff --git a/docker/setup.py b/docker/setup.py
index a6b50f8..3b174a6 100644
--- a/docker/setup.py
+++ b/docker/setup.py
@@ -1,7 +1,7 @@
# ============LICENSE_START=======================================================
# org.onap.dcae
# ================================================================================
-# Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (c) 2017-2018 AT&T Intellectual Property. All rights reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@ from setuptools import setup
setup(
name='dockerplugin',
description='Cloudify plugin for applications run in Docker containers',
- version="3.0.0",
+ version="3.1.0",
author='Michael Hwang, Tommy Carpenter',
packages=['dockerplugin'],
zip_safe=False,