diff --git a/CHANGELOG.md b/CHANGELOG.md index f755514..e45c48b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # LocalStack Python Client Change Log +* v1.39: Add endpoint for Amazon MQ * v1.38: Add `enable_local_endpoints()` util function; slight project refactoring, migrate from `nose` to `pytests` * v1.37: Add endpoint for Amazon Transcribe * v1.36: Add endpoints for Fault Injection Service (FIS) and Marketplace Metering diff --git a/localstack_client/config.py b/localstack_client/config.py index ca689c3..c5097ea 100644 --- a/localstack_client/config.py +++ b/localstack_client/config.py @@ -114,6 +114,7 @@ "fis": "{proto}://{host}:4643", "meteringmarketplace": "{proto}://{host}:4644", "transcribe": "{proto}://{host}:4566", + "mq": "{proto}://{host}:4566" } # TODO remove service port mapping above entirely diff --git a/setup.cfg b/setup.cfg index 21c52c4..d8b8793 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = localstack-client -version = 1.38 +version = 1.39 url = https://github.com/localstack/localstack-python-client author = LocalStack Team author_email = info@localstack.cloud