diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b900d58..4a3af61 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,6 +2,11 @@ Changelog ================= +1.0.1 (2024-01-17) +------------------ + +* Expanding version dependency constraints + 1.0.0 (2023-11-09) ------------------ diff --git a/SUPPORT.rst b/SUPPORT.rst index 802de07..d845949 100644 --- a/SUPPORT.rst +++ b/SUPPORT.rst @@ -13,7 +13,7 @@ Q&A (please complete the following information) - OS: [e.g. macOS] - Version: [e.g. 22.1.0] - Method of installation: [e.g. github] - - aws-msk-iam-sasl-signer-python version: [e.g. 1.0.0] + - aws-msk-iam-sasl-signer-python version: [e.g. 1.0.1] - Kafka library name: [e.g. kafka-python] - Kafka library version - Provide us a sample code snippet of your producer/consumer diff --git a/aws_msk_iam_sasl_signer/__init__.py b/aws_msk_iam_sasl_signer/__init__.py index fd5d3fb..c3ace53 100644 --- a/aws_msk_iam_sasl_signer/__init__.py +++ b/aws_msk_iam_sasl_signer/__init__.py @@ -2,4 +2,4 @@ # SPDX-License-Identifier: Apache-2.0 __author__ = "Amazon Managed Streaming for Apache Kafka" -__version__ = "1.0.0" +__version__ = "1.0.1" diff --git a/setup.cfg b/setup.cfg index 8311fa1..4dd7347 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 commit = True tag = True diff --git a/setup.py b/setup.py index 426d0af..36a1830 100644 --- a/setup.py +++ b/setup.py @@ -54,6 +54,6 @@ test_suite="tests", tests_require=test_requirements, url="https://github.com/aws/aws-msk-iam-sasl-signer-python", - version="1.0.0", + version="1.0.1", zip_safe=False, )