Skip to content

Commit

Permalink
Merge pull request #13 from catcherwong/dev
Browse files Browse the repository at this point in the history
Release a new version.
  • Loading branch information
catcherwong authored Feb 8, 2018
2 parents bed6fdf + a3445fd commit 9b49fce
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 15 deletions.
8 changes: 6 additions & 2 deletions src/EasyCaching.Core/EasyCaching.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.2</Version>
<Version>0.1.3</Version>
<Description>
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!
</Description>
Expand All @@ -15,7 +15,11 @@
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
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.
Expand Down
5 changes: 4 additions & 1 deletion src/EasyCaching.HybridCache/EasyCaching.HybridCache.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.0</Version>
<Version>0.1.1</Version>
<Description>
EasyCaching.HybridCache combines local caching and distributed caching.
</Description>
Expand All @@ -15,6 +15,9 @@
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
v0.1.1
1. RemoveByPrefix(Async).

v0.1.0
1. Init.
</PackageReleaseNotes>
Expand Down
7 changes: 5 additions & 2 deletions src/EasyCaching.InMemory/EasyCaching.InMemory.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.2</Version>
<Version>0.1.3</Version>
<Description>
In-memory cache based on EasyCaching.Core and Microsoft.Extensions.Caching.Memory
</Description>
Expand All @@ -15,7 +15,10 @@
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
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.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.1</Version>
<Version>0.1.2</Version>
<Description>
Caching Interceptor based on EasyCaching.Core and AspectCore
</Description>
Expand All @@ -15,7 +15,10 @@
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.1</Version>
<Version>0.1.2</Version>
<Description>
Caching Interceptor based on EasyCaching.Core and Castle
</Description>
Expand All @@ -15,7 +15,10 @@
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
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.

Expand Down
8 changes: 6 additions & 2 deletions src/EasyCaching.Memcached/EasyCaching.Memcached.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.2</Version>
<Version>0.1.3</Version>
<Description>
EasyCaching.Memcached based on EasyCaching.Core and EnyimMemcachedCore
</Description>
Expand All @@ -15,7 +15,11 @@
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
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.

Expand Down
7 changes: 5 additions & 2 deletions src/EasyCaching.Redis/EasyCaching.Redis.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.2</Version>
<Version>0.1.3</Version>
<Description>
EasyCaching.Redis based on EasyCaching.Core and StackExchange.Redis
</Description>
Expand All @@ -15,7 +15,10 @@
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
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.

Expand Down
7 changes: 5 additions & 2 deletions src/EasyCaching.SQLite/EasyCaching.SQLite.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.2</Version>
<Version>0.1.3</Version>
<Description>
EasyCaching.SQLite based on EasyCaching.Core and Microsoft.Data.SQLite
</Description>
Expand All @@ -15,7 +15,10 @@
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
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.

Expand Down

0 comments on commit 9b49fce

Please sign in to comment.