Skip to content

Commit

Permalink
Set version 1.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Dec 15, 2017
1 parent fc21e42 commit 19dfce3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion IM/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
'InfrastructureInfo', 'InfrastructureManager', 'recipe', 'request', 'REST', 'retry',
'ServiceRequests', 'SSH', 'SSHRetry', 'timedcall', 'UnixHTTPAdapter', 'uriparse',
'VirtualMachine', 'VMRC', 'xmlobject']
__version__ = '1.6.5'
__version__ = '1.6.6'
__author__ = 'Miguel Caballer'
7 changes: 7 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -362,3 +362,10 @@ IM 1.6.5
* Homogenize Inf ID log message
* Fix error cpu.count parameter is ignored in OpenStack conn.
* Fix ansible_version is not available in ctxt process.

IM 1.6.6
* Fix authorization file format does not allow passwords that contain ";".
* Improve error message in ONE conn in case net without leases.
* Fix error using disks.free_size in connectors.
* Add retries in Azure RG deletion.
* Avoid raising error in case that one auth line does not have the type field.
2 changes: 1 addition & 1 deletion docker-devel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FROM grycap/jenkins:ubuntu16.04-im
ARG BRANCH=devel
MAINTAINER Miguel Caballer <[email protected]>
LABEL version="1.6.5"
LABEL version="1.6.6"
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)"

EXPOSE 8899 8800
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Dockerfile to create a container with the IM service
FROM ubuntu:16.04
LABEL maintainer="Miguel Caballer <[email protected]>"
LABEL version="1.6.5"
LABEL version="1.6.6"
LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)"
EXPOSE 8899 8800

Expand All @@ -17,7 +17,7 @@ RUN pip install msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-co
# Install IM
RUN apt-get update && apt-get install --no-install-recommends -y gcc libmysqld-dev libssl-dev libffi-dev libsqlite3-dev && \
pip install MySQL-python && \
pip install IM==1.6.5 && \
pip install IM==1.6.6 && \
apt-get remove -y gcc libmysqld-dev libssl-dev libffi-dev libsqlite3-dev python-dev python-pip && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 19dfce3

Please sign in to comment.