diff --git a/Changelog.md b/Changelog.md
index cb6eee2..ac94250 100644
--- a/Changelog.md
+++ b/Changelog.md
@@ -1,5 +1,8 @@
# Changelog
+## v.0.24.1
+- Add `Tags` to `IExecutionContext`.
+
## v.0.24.0
- Upgraded to .NET 8.
diff --git a/src/Directory.Build.props b/src/Directory.Build.props
index b218022..5d2b4cf 100644
--- a/src/Directory.Build.props
+++ b/src/Directory.Build.props
@@ -5,7 +5,7 @@
latestA. Shafiemediator;cqrs
- 0.24.0
+ 0.24.1icon.pngLiteBus is an easy-to-use and ambitious in-process mediator providing the foundation to implement Command Query Separation (CQS). It is implemented with minimal reflection and instead utilizes covariance and contravariance to provide its core functionality.https://github.com/litenova/LiteBus
diff --git a/src/LiteBus.Messaging.Abstractions/Contexts/Execution/IExecutionContext.cs b/src/LiteBus.Messaging.Abstractions/Contexts/Execution/IExecutionContext.cs
index 4b1c4a8..f3fc6e6 100644
--- a/src/LiteBus.Messaging.Abstractions/Contexts/Execution/IExecutionContext.cs
+++ b/src/LiteBus.Messaging.Abstractions/Contexts/Execution/IExecutionContext.cs
@@ -19,4 +19,9 @@ public interface IExecutionContext
/// Gets a key/value collection that can be used to share data within the scope of this execution.
///
IDictionary