From 58212673cf1f9690a6d5d2102b2453c0267792d3 Mon Sep 17 00:00:00 2001 From: Voicu <99695945+VoicuAWS@users.noreply.github.com> Date: Mon, 4 Nov 2024 12:56:21 -0800 Subject: [PATCH] Release/0.3.15 (#993) * release 0.3.15 --- cfn-templates/cid-cfn.yml | 4 ++-- cid/_version.py | 2 +- cid/common.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cfn-templates/cid-cfn.yml b/cfn-templates/cid-cfn.yml index b2f5158e..579034f0 100644 --- a/cfn-templates/cid-cfn.yml +++ b/cfn-templates/cid-cfn.yml @@ -1,5 +1,5 @@ AWSTemplateFormatVersion: '2010-09-09' -Description: Deployment of Cloud Intelligence Dashboards v0.3.14 +Description: Deployment of Cloud Intelligence Dashboards v0.3.15 Metadata: AWS::CloudFormation::Interface: ParameterGroups: @@ -1625,7 +1625,7 @@ Resources: Description: An AWS managed layer with a cid-cmd package installed Content: S3Bucket: !Sub '${LambdaLayerBucketPrefix}-${AWS::Region}' - S3Key: 'cid-resource-lambda-layer/cid-0.3.14.zip' #replace version here if needed + S3Key: 'cid-resource-lambda-layer/cid-0.3.15.zip' #replace version here if needed CompatibleRuntimes: - python3.10 - python3.11 diff --git a/cid/_version.py b/cid/_version.py index 1ec0501b..529e69fd 100644 --- a/cid/_version.py +++ b/cid/_version.py @@ -1 +1 @@ -__version__ = '0.3.14' +__version__ = '0.3.15' diff --git a/cid/common.py b/cid/common.py index d45d2446..bd83d178 100644 --- a/cid/common.py +++ b/cid/common.py @@ -1063,7 +1063,7 @@ def check_dashboard_version_compatibility(self, dashboard_id): cid_print(f" Version {str(dashboard.cid_version): <9} -> {str(dashboard.cid_version_latest): <9}") try: - return dashboard.cid_version.compatible_versions(dashboard.cid_version) + return dashboard.cid_version.compatible_versions(dashboard.cid_version_latest) except ValueError as exc: logger.info(exc) return None