Skip to content

Commit 9b49fce

Browse files
authored
Merge pull request #13 from catcherwong/dev
Release a new version.
2 parents bed6fdf + a3445fd commit 9b49fce

File tree

8 files changed

+41
-15
lines changed

8 files changed

+41
-15
lines changed

src/EasyCaching.Core/EasyCaching.Core.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Owners>Catcher Wong</Owners>
66
<Authors>Catcher Wong</Authors>
7-
<Version>0.1.2</Version>
7+
<Version>0.1.3</Version>
88
<Description>
99
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!
1010
</Description>
@@ -15,7 +15,11 @@
1515
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
1616
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
1717
<PackageReleaseNotes>
18-
v0.1.2
18+
v0.1.3
19+
1. RemoveByPrefix(Async).
20+
2. DefaultEasyCachingKeyGenerator add GetCacheKeyPrefix method.
21+
22+
v0.1.2
1923
1. Support HybridCaching Probider.
2024
2. Add KeyGenerator.
2125
3. Introduct Able , Put And Evict Attribute.

src/EasyCaching.HybridCache/EasyCaching.HybridCache.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Owners>Catcher Wong</Owners>
66
<Authors>Catcher Wong</Authors>
7-
<Version>0.1.0</Version>
7+
<Version>0.1.1</Version>
88
<Description>
99
EasyCaching.HybridCache combines local caching and distributed caching.
1010
</Description>
@@ -15,6 +15,9 @@
1515
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
1616
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
1717
<PackageReleaseNotes>
18+
v0.1.1
19+
1. RemoveByPrefix(Async).
20+
1821
v0.1.0
1922
1. Init.
2023
</PackageReleaseNotes>

src/EasyCaching.InMemory/EasyCaching.InMemory.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Owners>Catcher Wong</Owners>
66
<Authors>Catcher Wong</Authors>
7-
<Version>0.1.2</Version>
7+
<Version>0.1.3</Version>
88
<Description>
99
In-memory cache based on EasyCaching.Core and Microsoft.Extensions.Caching.Memory
1010
</Description>
@@ -15,7 +15,10 @@
1515
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
1616
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
1717
<PackageReleaseNotes>
18-
v0.1.2
18+
v0.1.3
19+
1. RemoveByPrefix(Async).
20+
21+
v0.1.2
1922
1. Support HybridCaching Probider.
2023
2. Introduce Refresh(Async) method to handle cached value.
2124

src/EasyCaching.Interceptor.AspectCore/EasyCaching.Interceptor.AspectCore.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Owners>Catcher Wong</Owners>
66
<Authors>Catcher Wong</Authors>
7-
<Version>0.1.1</Version>
7+
<Version>0.1.2</Version>
88
<Description>
99
Caching Interceptor based on EasyCaching.Core and AspectCore
1010
</Description>
@@ -15,7 +15,10 @@
1515
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
1616
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
1717
<PackageReleaseNotes>
18-
v0.1.1
18+
v0.1.2
19+
1. Enable IsAll when using Evict.
20+
21+
v0.1.1
1922
1. Get caching with data retriever => without data retriever .
2023
2. Caching Handle with async method.
2124
3. Introduct Able , Put And Evict.

src/EasyCaching.Interceptor.Castle/EasyCaching.Interceptor.Castle.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Owners>Catcher Wong</Owners>
66
<Authors>Catcher Wong</Authors>
7-
<Version>0.1.1</Version>
7+
<Version>0.1.2</Version>
88
<Description>
99
Caching Interceptor based on EasyCaching.Core and Castle
1010
</Description>
@@ -15,7 +15,10 @@
1515
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
1616
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
1717
<PackageReleaseNotes>
18-
v0.1.1
18+
v0.1.2
19+
1. Enable IsAll when using Evict.
20+
21+
v0.1.1
1922
1. Get caching with data retriever => without data retriever .
2023
2. Introduct Able , Put And Evict.
2124

src/EasyCaching.Memcached/EasyCaching.Memcached.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Owners>Catcher Wong</Owners>
66
<Authors>Catcher Wong</Authors>
7-
<Version>0.1.2</Version>
7+
<Version>0.1.3</Version>
88
<Description>
99
EasyCaching.Memcached based on EasyCaching.Core and EnyimMemcachedCore
1010
</Description>
@@ -15,7 +15,11 @@
1515
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
1616
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
1717
<PackageReleaseNotes>
18-
v0.1.2
18+
v0.1.3
19+
1. RemoveByPrefix(Async).
20+
2. Handle limitation of cachekey.
21+
22+
v0.1.2
1923
1. Support HybridCaching Probider.
2024
2. Introduce Refresh(Async) method to handle cached value.
2125

src/EasyCaching.Redis/EasyCaching.Redis.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Owners>Catcher Wong</Owners>
66
<Authors>Catcher Wong</Authors>
7-
<Version>0.1.2</Version>
7+
<Version>0.1.3</Version>
88
<Description>
99
EasyCaching.Redis based on EasyCaching.Core and StackExchange.Redis
1010
</Description>
@@ -15,7 +15,10 @@
1515
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
1616
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
1717
<PackageReleaseNotes>
18-
v0.1.2
18+
v0.1.3
19+
1. RemoveByPrefix(Async).
20+
21+
v0.1.2
1922
1. Support HybridCaching Probider.
2023
2. Introduce Refresh(Async) method to handle cached value.
2124

src/EasyCaching.SQLite/EasyCaching.SQLite.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.0</TargetFramework>
55
<Owners>Catcher Wong</Owners>
66
<Authors>Catcher Wong</Authors>
7-
<Version>0.1.2</Version>
7+
<Version>0.1.3</Version>
88
<Description>
99
EasyCaching.SQLite based on EasyCaching.Core and Microsoft.Data.SQLite
1010
</Description>
@@ -15,7 +15,10 @@
1515
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
1616
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
1717
<PackageReleaseNotes>
18-
v0.1.2
18+
v0.1.3
19+
1. RemoveByPrefix(Async).
20+
21+
v0.1.2
1922
1. Support HybridCaching Probider.
2023
2. Introduce Refresh(Async) method to handle cached value.
2124

0 commit comments

Comments
 (0)