From ca9d47ec81ca75f5841770abf3d278800684f828 Mon Sep 17 00:00:00 2001 From: Mark Peek Date: Wed, 2 Oct 2024 10:03:35 -0700 Subject: [PATCH] Release 4.8.3 --- CHANGELOG.rst | 5 +++++ docs/conf.py | 2 +- troposphere/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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"