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.