Skip to content

Commit

Permalink
Bump to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnPreston committed May 19, 2024
1 parent e611e9a commit 80e4ab6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ecs_composex_msk_cluster/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

__author__ = """John Preston"""
__email__ = "[email protected]"
__version__ = "1.0.0"
__version__ = "1.0.1"
8 changes: 5 additions & 3 deletions ecs_composex_msk_cluster/msk_cluster_ecs_iam.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,11 @@ def handle_iam_kafka_resources_access(
"Sid": "ConnectToCluster",
"Effect": "Allow",
"Resource": [
Ref(cluster_arn_id["ImportParameter"])
if resource.cfn_resource
else cluster_arn_id
(
Ref(cluster_arn_id["ImportParameter"])
if resource.cfn_resource
else cluster_arn_id
)
],
"Action": ["kafka-cluster:Connect"],
}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ecs_composex_msk_cluster"
version = "1.0.0"
version = "1.0.1"
description = "msk_cluster - AWS MSK Cluster module for ECS Compose-X"
authors = ["johnpreston <[email protected]>"]
license = "MPL-2.0"
Expand Down Expand Up @@ -80,7 +80,7 @@ omit = [
github_url = "https://github.com/compose-x/ecs_composex_msk_cluster"

[tool.tbump.version]
current = "1.0.0"
current = "1.0.1"

regex = '''
(?P<major>\d+)
Expand Down

0 comments on commit 80e4ab6

Please sign in to comment.