Skip to content

Commit

Permalink
Set version 1.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Mar 29, 2021
1 parent 19c618c commit 8870b35
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -101,3 +101,7 @@ IM-client 1.5.8
* Fix error where context flag ignored in add and remove resource in case of REST APA.
* Add Bearer token command.
* Add support for ProxyCommand ssh to internal VMs using master VM as proxy.

IM-client 1.5.9
* Generalize Bearer token command.
* Add new IM cloud functions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Dockerfile to create a container with the IM client
FROM alpine:3.12
LABEL maintainer="Miguel Caballer <[email protected]>"
LABEL version="1.5.8"
LABEL version="1.5.9"
LABEL description="Container image to run the IM client. (http://www.grycap.upv.es/im)"

# Install python3
RUN apk add --no-cache python3 py3-requests

# Install IM client
RUN apk add --no-cache py3-pip && \
pip3 install im-client==1.5.8 && \
pip3 install im-client==1.5.9 && \
apk del --no-cache py3-pip

ENTRYPOINT ["/usr/bin/im_client.py"]
2 changes: 1 addition & 1 deletion im_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1163,7 +1163,7 @@ def get_parser():
http://www.gnu.org/licenses/gpl-3.0.txt for details."

parser = PosOptionParser(usage="%prog [-u|--xmlrpc-url <url>] [-r|--restapi-url <url>] [-v|--verify-ssl] "
"[-a|--auth_file <filename>] operation op_parameters" + NOTICE, version="%prog 1.5.7")
"[-a|--auth_file <filename>] operation op_parameters" + NOTICE, version="%prog 1.5.9")
parser.add_option("-a", "--auth_file", dest="auth_file", nargs=1, default=default_auth_file, help="Authentication"
" data file", type="string")
parser.add_option("-u", "--xmlrpc-url", dest="xmlrpc", nargs=1, default=default_xmlrpc, help="URL address of the "
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from setuptools import setup

version = "1.5.8"
version = "1.5.9"

setup(name="IM-client", version=version,
author='GRyCAP - Universitat Politecnica de Valencia',
Expand Down

0 comments on commit 8870b35

Please sign in to comment.