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