From 1f06ac42792028c1860c2d4e038cf7d094229afb Mon Sep 17 00:00:00 2001 From: Chintan Shah Date: Fri, 14 Jun 2024 18:47:45 +0530 Subject: [PATCH] Update ICachingUniqueKeyGenerationService method Updated the `GenerateUniqueKey` method in `ICachingUniqueKeyGenerationService` to accept an additional `args` parameter for enhanced key generation flexibility. Also incremented the version in `Promact.Core.csproj` from `1.0.0.1` to `1.0.0.2` to reflect these changes and other project updates. --- Caching/ICachingUniqueKeyGenerationService.cs | 2 +- Promact.Core.csproj | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Caching/ICachingUniqueKeyGenerationService.cs b/Caching/ICachingUniqueKeyGenerationService.cs index d06a8e2..e12af66 100644 --- a/Caching/ICachingUniqueKeyGenerationService.cs +++ b/Caching/ICachingUniqueKeyGenerationService.cs @@ -2,6 +2,6 @@ { public interface ICachingUniqueKeyGenerationService { - string GenerateUniqueKey(string key); + string GenerateUniqueKey(string key, string[] args); } } diff --git a/Promact.Core.csproj b/Promact.Core.csproj index b743285..aa26687 100644 --- a/Promact.Core.csproj +++ b/Promact.Core.csproj @@ -9,9 +9,9 @@ https://github.com/Promact/Core https://github.com/Promact/Core README.md - 1.0.0.1 - 1.0.0.1 - 1.0.0.1 + 1.0.0.2 + 1.0.0.2 + 1.0.0.2