From 78ae0b1d2a1fb5002c66fd8928cfecca787d3780 Mon Sep 17 00:00:00 2001 From: micafer Date: Tue, 19 Sep 2017 16:56:07 +0200 Subject: [PATCH] Set version 1.6.1 --- IM/__init__.py | 2 +- changelog | 5 +++++ docker-devel/Dockerfile | 2 +- docker-py3/Dockerfile | 2 +- docker/Dockerfile | 4 ++-- 5 files changed, 10 insertions(+), 5 deletions(-) diff --git a/IM/__init__.py b/IM/__init__.py index c30f4f433..812d455ce 100644 --- a/IM/__init__.py +++ b/IM/__init__.py @@ -19,5 +19,5 @@ 'InfrastructureInfo', 'InfrastructureManager', 'recipe', 'request', 'REST', 'retry', 'ServiceRequests', 'SSH', 'SSHRetry', 'timedcall', 'UnixHTTPConnection', 'uriparse', 'VirtualMachine', 'VMRC', 'xmlobject'] -__version__ = '1.6.0' +__version__ = '1.6.1' __author__ = 'Miguel Caballer' diff --git a/changelog b/changelog index 9e3150fc9..782e7e3fa 100644 --- a/changelog +++ b/changelog @@ -329,3 +329,8 @@ IM 1.6.0 * Update Ansible roles in Master node in reconfiguration. * Fix error in Azure conn creating subnet. * Fix error in Context. process in basic test in SSH tests. + +IM 1.6.1 + * Fix error in ctxt process in some cases in OpenStack sites. + * Fix error launching IM with Ansible 2.4.0. + diff --git a/docker-devel/Dockerfile b/docker-devel/Dockerfile index 1e4d54aac..246b0e46e 100644 --- a/docker-devel/Dockerfile +++ b/docker-devel/Dockerfile @@ -1,7 +1,7 @@ # Dockerfile to create a container with the IM service FROM grycap/jenkins:ubuntu16.04-im MAINTAINER Miguel Caballer -LABEL version="1.6.0" +LABEL version="1.6.1" LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" EXPOSE 8899 8800 diff --git a/docker-py3/Dockerfile b/docker-py3/Dockerfile index fb66f53d2..44d60b3ac 100644 --- a/docker-py3/Dockerfile +++ b/docker-py3/Dockerfile @@ -1,7 +1,7 @@ # Dockerfile to create a container with the IM service with python 3 FROM ubuntu:16.04 MAINTAINER Miguel Caballer -LABEL version="1.5.6" +LABEL version="1.6.1" LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im) with python 3" EXPOSE 8899 8800 RUN apt-get update && apt-get install -y gcc python3-dbg python3-dev python3-pip libmysqld-dev openssh-client sshpass libssl-dev libffi-dev python3-requests python3-mysqldb diff --git a/docker/Dockerfile b/docker/Dockerfile index 2cfd5e10f..4481e901e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,7 +1,7 @@ # Dockerfile to create a container with the IM service FROM ubuntu:16.04 MAINTAINER Miguel Caballer -LABEL version="1.5.6" +LABEL version="1.6.1" LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" EXPOSE 8899 8800 # Install Ansible @@ -23,7 +23,7 @@ RUN wget https://launchpad.net/ubuntu/+archive/primary/+files/python-msrest_0.4. # Install IM RUN wget https://github.com/grycap/RADL/releases/download/v1.1.0/python-radl_1.1.0-1_all.deb && \ - wget https://github.com/grycap/im/releases/download/v1.5.6/python-im_1.5.6-1_all.deb && \ + wget https://github.com/grycap/im/releases/download/v1.6.1/python-im_1.6.1-1_all.deb && \ dpkg -i python-radl_*_all.deb ; \ dpkg -i python-im_*_all.deb ; \ rm *.deb && \