From a3445fd1d61c12e2719410e4daf4adad91791e7e Mon Sep 17 00:00:00 2001 From: catcherwong Date: Wed, 7 Feb 2018 19:59:25 +0800 Subject: [PATCH] :bookmark: Release a new version. --- src/EasyCaching.Core/EasyCaching.Core.csproj | 8 ++++++-- .../EasyCaching.HybridCache.csproj | 5 ++++- src/EasyCaching.InMemory/EasyCaching.InMemory.csproj | 7 +++++-- .../EasyCaching.Interceptor.AspectCore.csproj | 7 +++++-- .../EasyCaching.Interceptor.Castle.csproj | 7 +++++-- src/EasyCaching.Memcached/EasyCaching.Memcached.csproj | 8 ++++++-- src/EasyCaching.Redis/EasyCaching.Redis.csproj | 7 +++++-- src/EasyCaching.SQLite/EasyCaching.SQLite.csproj | 7 +++++-- 8 files changed, 41 insertions(+), 15 deletions(-) diff --git a/src/EasyCaching.Core/EasyCaching.Core.csproj b/src/EasyCaching.Core/EasyCaching.Core.csproj index 5fe235e8..6dfc56f4 100644 --- a/src/EasyCaching.Core/EasyCaching.Core.csproj +++ b/src/EasyCaching.Core/EasyCaching.Core.csproj @@ -4,7 +4,7 @@ netstandard2.0 Catcher Wong Catcher Wong - 0.1.2 + 0.1.3 EasyCaching is a open source caching library that contains basic usages and some advanced usages of caching which can help us to handle caching more easier! @@ -15,7 +15,11 @@ https://github.com/catcherwong/EasyCaching https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png - v0.1.2 + v0.1.3 + 1. RemoveByPrefix(Async). + 2. DefaultEasyCachingKeyGenerator add GetCacheKeyPrefix method. + + v0.1.2 1. Support HybridCaching Probider. 2. Add KeyGenerator. 3. Introduct Able , Put And Evict Attribute. diff --git a/src/EasyCaching.HybridCache/EasyCaching.HybridCache.csproj b/src/EasyCaching.HybridCache/EasyCaching.HybridCache.csproj index 8566b9b8..efbd8cd2 100644 --- a/src/EasyCaching.HybridCache/EasyCaching.HybridCache.csproj +++ b/src/EasyCaching.HybridCache/EasyCaching.HybridCache.csproj @@ -4,7 +4,7 @@ netstandard2.0 Catcher Wong Catcher Wong - 0.1.0 + 0.1.1 EasyCaching.HybridCache combines local caching and distributed caching. @@ -15,6 +15,9 @@ https://github.com/catcherwong/EasyCaching https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png + v0.1.1 + 1. RemoveByPrefix(Async). + v0.1.0 1. Init. diff --git a/src/EasyCaching.InMemory/EasyCaching.InMemory.csproj b/src/EasyCaching.InMemory/EasyCaching.InMemory.csproj index d8190587..50f3e790 100644 --- a/src/EasyCaching.InMemory/EasyCaching.InMemory.csproj +++ b/src/EasyCaching.InMemory/EasyCaching.InMemory.csproj @@ -4,7 +4,7 @@ netstandard2.0 Catcher Wong Catcher Wong - 0.1.2 + 0.1.3 In-memory cache based on EasyCaching.Core and Microsoft.Extensions.Caching.Memory @@ -15,7 +15,10 @@ https://github.com/catcherwong/EasyCaching https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png - v0.1.2 + v0.1.3 + 1. RemoveByPrefix(Async). + + v0.1.2 1. Support HybridCaching Probider. 2. Introduce Refresh(Async) method to handle cached value. diff --git a/src/EasyCaching.Interceptor.AspectCore/EasyCaching.Interceptor.AspectCore.csproj b/src/EasyCaching.Interceptor.AspectCore/EasyCaching.Interceptor.AspectCore.csproj index fe40ee09..d3312c2d 100644 --- a/src/EasyCaching.Interceptor.AspectCore/EasyCaching.Interceptor.AspectCore.csproj +++ b/src/EasyCaching.Interceptor.AspectCore/EasyCaching.Interceptor.AspectCore.csproj @@ -4,7 +4,7 @@ netstandard2.0 Catcher Wong Catcher Wong - 0.1.1 + 0.1.2 Caching Interceptor based on EasyCaching.Core and AspectCore @@ -15,7 +15,10 @@ https://github.com/catcherwong/EasyCaching https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png - v0.1.1 + v0.1.2 + 1. Enable IsAll when using Evict. + + v0.1.1 1. Get caching with data retriever => without data retriever . 2. Caching Handle with async method. 3. Introduct Able , Put And Evict. diff --git a/src/EasyCaching.Interceptor.Castle/EasyCaching.Interceptor.Castle.csproj b/src/EasyCaching.Interceptor.Castle/EasyCaching.Interceptor.Castle.csproj index a4069bb6..42d2ff2b 100644 --- a/src/EasyCaching.Interceptor.Castle/EasyCaching.Interceptor.Castle.csproj +++ b/src/EasyCaching.Interceptor.Castle/EasyCaching.Interceptor.Castle.csproj @@ -4,7 +4,7 @@ netstandard2.0 Catcher Wong Catcher Wong - 0.1.1 + 0.1.2 Caching Interceptor based on EasyCaching.Core and Castle @@ -15,7 +15,10 @@ https://github.com/catcherwong/EasyCaching https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png - v0.1.1 + v0.1.2 + 1. Enable IsAll when using Evict. + + v0.1.1 1. Get caching with data retriever => without data retriever . 2. Introduct Able , Put And Evict. diff --git a/src/EasyCaching.Memcached/EasyCaching.Memcached.csproj b/src/EasyCaching.Memcached/EasyCaching.Memcached.csproj index df3c047a..ac7aa70a 100644 --- a/src/EasyCaching.Memcached/EasyCaching.Memcached.csproj +++ b/src/EasyCaching.Memcached/EasyCaching.Memcached.csproj @@ -4,7 +4,7 @@ netstandard2.0 Catcher Wong Catcher Wong - 0.1.2 + 0.1.3 EasyCaching.Memcached based on EasyCaching.Core and EnyimMemcachedCore @@ -15,7 +15,11 @@ https://github.com/catcherwong/EasyCaching https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png - v0.1.2 + v0.1.3 + 1. RemoveByPrefix(Async). + 2. Handle limitation of cachekey. + + v0.1.2 1. Support HybridCaching Probider. 2. Introduce Refresh(Async) method to handle cached value. diff --git a/src/EasyCaching.Redis/EasyCaching.Redis.csproj b/src/EasyCaching.Redis/EasyCaching.Redis.csproj index 3cee2e31..a9d1abb0 100644 --- a/src/EasyCaching.Redis/EasyCaching.Redis.csproj +++ b/src/EasyCaching.Redis/EasyCaching.Redis.csproj @@ -4,7 +4,7 @@ netstandard2.0 Catcher Wong Catcher Wong - 0.1.2 + 0.1.3 EasyCaching.Redis based on EasyCaching.Core and StackExchange.Redis @@ -15,7 +15,10 @@ https://github.com/catcherwong/EasyCaching https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png - v0.1.2 + v0.1.3 + 1. RemoveByPrefix(Async). + + v0.1.2 1. Support HybridCaching Probider. 2. Introduce Refresh(Async) method to handle cached value. diff --git a/src/EasyCaching.SQLite/EasyCaching.SQLite.csproj b/src/EasyCaching.SQLite/EasyCaching.SQLite.csproj index ec52ee11..cc32c546 100644 --- a/src/EasyCaching.SQLite/EasyCaching.SQLite.csproj +++ b/src/EasyCaching.SQLite/EasyCaching.SQLite.csproj @@ -4,7 +4,7 @@ netstandard2.0 Catcher Wong Catcher Wong - 0.1.2 + 0.1.3 EasyCaching.SQLite based on EasyCaching.Core and Microsoft.Data.SQLite @@ -15,7 +15,10 @@ https://github.com/catcherwong/EasyCaching https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png - v0.1.2 + v0.1.3 + 1. RemoveByPrefix(Async). + + v0.1.2 1. Support HybridCaching Probider. 2. Introduce Refresh(Async) method to handle cached value.