diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0ecf14261..e2c5fbc4e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,8 @@ +4.8.3 (2024*10*02) +------------------------------- +* Allow AWSHelperFn for Tag properties (#2271) +* Updates from spec version 185.0.1 (#2272) + 4.8.2 (2024*09*30) ------------------------------- * Update SSM OperatingSystem validator (#2256) diff --git a/docs/conf.py b/docs/conf.py index f09b13796..24a20865b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = "" # The full version, including alpha/beta/rc tags -release = "4.8.2" +release = "4.8.3" # -- General configuration --------------------------------------------------- diff --git a/troposphere/__init__.py b/troposphere/__init__.py index 53c274c13..67ebfb237 100644 --- a/troposphere/__init__.py +++ b/troposphere/__init__.py @@ -41,7 +41,7 @@ else: from typing import Final -__version__ = "4.8.2" +__version__ = "4.8.3" # constants for DeletionPolicy and UpdateReplacePolicy Delete: Final = "Delete"