From bad762ed78d6f7baa0fe13cb5b7ac06a85602942 Mon Sep 17 00:00:00 2001 From: Steve Jones <steve@iaascream.cloud> Date: Wed, 10 Mar 2021 10:53:10 -0800 Subject: [PATCH 1/2] Service mapping for elbv2 --- awscli_plugin_eucalyptus/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/awscli_plugin_eucalyptus/__init__.py b/awscli_plugin_eucalyptus/__init__.py index ff25dfc..94770c4 100644 --- a/awscli_plugin_eucalyptus/__init__.py +++ b/awscli_plugin_eucalyptus/__init__.py @@ -7,6 +7,7 @@ COMMAND_SERVICE_MAP = { 'cloudwatch': 'monitoring', 'elb': 'elasticloadbalancing', + 'elbv2': 'elasticloadbalancing', 's3api': 's3' } From b3c1942d10bdf2198344ab7304a68ac075952474 Mon Sep 17 00:00:00 2001 From: Steve Jones <steve@iaascream.cloud> Date: Wed, 10 Mar 2021 10:53:45 -0800 Subject: [PATCH 2/2] Version bump (0.3) --- VERSION | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 3b04cfb..be58634 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2 +0.3 diff --git a/setup.py b/setup.py index ae08bee..fec6393 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ project_dir = path.abspath(path.dirname(__file__)) with open(path.join(project_dir, 'VERSION'), 'rb') as version: - version = version.read().decode('UTF-8') + version = version.read().decode('UTF-8').strip() with open(path.join(project_dir, 'README.md'), 'rb') as readme: long_description = readme.read().decode('UTF-8')