change cherrypy version to 18.1.2

Change-Id: Id9a2e516e253ccf174d2ac7849178da7bdac0576
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
diff --git a/Dockerfile.local b/Dockerfile.local
index 3a31273..e72aefa 100644
--- a/Dockerfile.local
+++ b/Dockerfile.local
@@ -21,7 +21,7 @@
 RUN apt-get update && apt-get install -y git python3 python3-jsonschema \
     python3-pymongo python3-yaml python3-pip python3-keystoneclient \
     && pip3 install pip==9.0.3 \
-    && pip3 install aiokafka aiohttp cherrypy==18.0.0 keystoneauth1 requests \
+    && pip3 install aiokafka aiohttp cherrypy==18.1.2 keystoneauth1 requests \
     && mkdir -p /app/storage/kafka && mkdir -p /app/log 
 
 # OSM_COMMON
diff --git a/debian/python3-osm-nbi.postinst b/debian/python3-osm-nbi.postinst
index 5ff9ec7..769c250 100755
--- a/debian/python3-osm-nbi.postinst
+++ b/debian/python3-osm-nbi.postinst
@@ -21,7 +21,7 @@
 echo "Installing python dependencies via pip..."
 
 pip3 install pip==9.0.3
-pip3 install cherrypy==18.0.0
+pip3 install cherrypy==18.1.2
 pip3 install keystoneauth1
 
 #Creation of log folder
diff --git a/osm_nbi/__init__.py b/osm_nbi/__init__.py
index d93de2d..3c38124 100644
--- a/osm_nbi/__init__.py
+++ b/osm_nbi/__init__.py
@@ -12,5 +12,5 @@
 # under the License.
 ##
 
-version = '6.0.2.post3'
+version = '6.0.2.post4'
 version_date = '2018-09-13'
diff --git a/requirements.txt b/requirements.txt
index 712bfe4..64c7079 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -10,7 +10,7 @@
 # License for the specific language governing permissions and limitations
 # under the License.
 
-CherryPy==18.0.0
+CherryPy==18.1.2
 jsonschema
 PyYAML==3.*
 python-keystoneclient
diff --git a/setup.py b/setup.py
index 8946575..ad7cdd5 100644
--- a/setup.py
+++ b/setup.py
@@ -52,7 +52,7 @@
         'git+https://osm.etsi.org/gerrit/osm/common.git#egg=osm-common'
     ],
     install_requires=[
-        'CherryPy==18.0.0',
+        'CherryPy==18.1.2',
         'osm-common',
         'jsonschema',
         'PyYAML',