Skip to content

Commit

Permalink
Release/0.3.15 (#993)
Browse files Browse the repository at this point in the history
* release 0.3.15
  • Loading branch information
VoicuAWS authored Nov 4, 2024
1 parent aea0397 commit 5821267
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cfn-templates/cid-cfn.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cid/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.3.14'
__version__ = '0.3.15'
2 changes: 1 addition & 1 deletion cid/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5821267

Please sign in to comment.