diff --git a/README.md b/README.md index 228eac1..41f2188 100644 --- a/README.md +++ b/README.md @@ -77,6 +77,7 @@ ADDITIONAL_TF_OVERRIDE_LOCATIONS=/path/to/module1,path/to/module2 tflocal plan ## Change Log +* v0.24.1: Exclude broken `python-hcl2` version from requirements * v0.24.0: Add support to return `terraform-local` version when calling `tflocal -version` and fix AWS provider detection * v0.23.1: Fix endpoint overrides for Terraform AWS provider >= 6.0.0-beta2 * v0.23.0: Add support for `terraform_remote_state` with `s3` backend to read the state stored in local S3 backend; fix S3 backend config detection with multiple Terraform blocks diff --git a/setup.cfg b/setup.cfg index d4617e1..5fcadfd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = terraform-local -version = 0.24.0 +version = 0.24.1 url = https://github.com/localstack/terraform-local author = LocalStack Team author_email = info@localstack.cloud @@ -28,7 +28,7 @@ packages = find: install_requires = localstack-client - python-hcl2 + python-hcl2!=7.3.0 packaging [options.extras_require]