diff --git a/CHANGELOG.md b/CHANGELOG.md index 97f6b1c..72f0624 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ Changelog ========= +v2.1.3 (2024-07-31) +------------------- +- Added support for a new browser authentication plugin called + BrowserIdcAuthPlugin to facilitate single-sign-on integration with AWS + IAM Identity Center. [Brooke White] +- Chore: publish inline type annotations (#224) [James Dow, James Dow] + + Allow inline type hints to be packaged and distributed + following PEP561 specification + https://peps.python.org/pep-0561/#specification + + v2.1.2 (2024-06-19) ------------------- - Temporarily reverted the following commit which caused connection diff --git a/redshift_connector/version.py b/redshift_connector/version.py index a940811..c0c559a 100644 --- a/redshift_connector/version.py +++ b/redshift_connector/version.py @@ -2,4 +2,4 @@ # 1) we don't load dependencies by storing it in __init__.py # 2) we can import it in setup.py for the same reason # 3) we can import it into your module module -__version__ = "2.1.2" +__version__ = "2.1.3"