Skip to content

Commit

Permalink
🔖 Release new version.
Browse files Browse the repository at this point in the history
  • Loading branch information
catcherwong committed Mar 4, 2018
1 parent d1ab141 commit 40e3c37
Show file tree
Hide file tree
Showing 9 changed files with 27 additions and 96 deletions.
18 changes: 2 additions & 16 deletions src/EasyCaching.Core/EasyCaching.Core.csproj
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.3</Version>
<Version>0.1.4</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,21 +15,7 @@
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
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.

v0.1.1
1. IEasyCachingSerializer add new APIs in order to support Memcached Transcoder.
2. IEasyCachingProvider add new APIs without data retriever.

v0.1.0
1. Init.
Add some new caching APIs.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
10 changes: 3 additions & 7 deletions src/EasyCaching.HybridCache/EasyCaching.HybridCache.csproj
Expand Up @@ -4,22 +4,18 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.1</Version>
<Version>0.1.2</Version>
<Description>
EasyCaching.HybridCache combines local caching and distributed caching.
</Description>
<PackageTags>Caching,Cache,Distributed,Memory,Interceptor,Synchronization,Hybrid</PackageTags>
<PackageTags>Caching,Cache,Synchronization,Hybrid</PackageTags>
<PackageProjectUrl>https://github.com/catcherwong/EasyCaching</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/catcherwong/EasyCaching/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/catcherwong/EasyCaching</RepositoryUrl>
<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.
Add some new caching APIs.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
17 changes: 3 additions & 14 deletions src/EasyCaching.InMemory/EasyCaching.InMemory.csproj
Expand Up @@ -4,29 +4,18 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.3</Version>
<Version>0.1.4</Version>
<Description>
In-memory cache based on EasyCaching.Core and Microsoft.Extensions.Caching.Memory
</Description>
<PackageTags>Caching,Cache,Distributed,Memory,Interceptor,Synchronization</PackageTags>
<PackageTags>Caching,Cache,In-Memory</PackageTags>
<PackageProjectUrl>https://github.com/catcherwong/EasyCaching</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/catcherwong/EasyCaching/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/catcherwong/EasyCaching</RepositoryUrl>
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
v0.1.3
1. RemoveByPrefix(Async).

v0.1.2
1. Support HybridCaching Probider.
2. Introduce Refresh(Async) method to handle cached value.

v0.1.1
1. InMemoryCachingProvider add new APIs without data retriever.

v0.1.0
1. Init.
Add some new caching APIs.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
23 changes: 6 additions & 17 deletions src/EasyCaching.Memcached/EasyCaching.Memcached.csproj
Expand Up @@ -4,31 +4,20 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.3</Version>
<Version>0.1.4</Version>
<Description>
EasyCaching.Memcached based on EasyCaching.Core and EnyimMemcachedCore
</Description>
<PackageTags>Caching,Cache,Distributed,Memory,Interceptor,Synchronization</PackageTags>
<PackageTags>Caching,Cache,Distributed,Memcached</PackageTags>
<PackageProjectUrl>https://github.com/catcherwong/EasyCaching</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/catcherwong/EasyCaching/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/catcherwong/EasyCaching</RepositoryUrl>
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
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.

v0.1.1
1. DefaultMemcachedCachingProvider add new APIs without data retriever.
2. MessagePackFormatterTranscoder.

v0.1.0
1. Init.
<PackageReleaseNotes>
1. Update EnyimMemcachedCore to version 2.1.0.2.
2. Add some new caching APIs.
3. Make some change of Transcoder.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
20 changes: 4 additions & 16 deletions src/EasyCaching.Redis/EasyCaching.Redis.csproj
Expand Up @@ -4,30 +4,18 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.3</Version>
<Version>0.1.4</Version>
<Description>
EasyCaching.Redis based on EasyCaching.Core and StackExchange.Redis
</Description>
<PackageTags>Caching,Cache,Distributed,Memory,Interceptor,Synchronization</PackageTags>
<PackageTags>Caching,Cache,Distributed,Redis</PackageTags>
<PackageProjectUrl>https://github.com/catcherwong/EasyCaching</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/catcherwong/EasyCaching/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/catcherwong/EasyCaching</RepositoryUrl>
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
v0.1.3
1. RemoveByPrefix(Async).

v0.1.2
1. Support HybridCaching Probider.
2. Introduce Refresh(Async) method to handle cached value.

v0.1.1
1. DefaultRedisCachingProvider add new APIs without data retriever.
2. Add default binary formatter Serializer.

v0.1.0
1. Init.
<PackageReleaseNotes>
Add some new caching APIs.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
17 changes: 3 additions & 14 deletions src/EasyCaching.SQLite/EasyCaching.SQLite.csproj
Expand Up @@ -4,29 +4,18 @@
<TargetFramework>netstandard2.0</TargetFramework>
<Owners>Catcher Wong</Owners>
<Authors>Catcher Wong</Authors>
<Version>0.1.3</Version>
<Version>0.1.4</Version>
<Description>
EasyCaching.SQLite based on EasyCaching.Core and Microsoft.Data.SQLite
</Description>
<PackageTags>Caching,Cache,Distributed,Memory,Interceptor,Synchronization</PackageTags>
<PackageTags>Caching,Cache,SQLite</PackageTags>
<PackageProjectUrl>https://github.com/catcherwong/EasyCaching</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/catcherwong/EasyCaching/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/catcherwong/EasyCaching</RepositoryUrl>
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
v0.1.3
1. RemoveByPrefix(Async).

v0.1.2
1. Support HybridCaching Probider.
2. Introduce Refresh(Async) method to handle cached value.

v0.1.1
1. SQLiteCachingProvider add new APIs without data retriever.

v0.1.0
1. Init.
Add some new caching APIs.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
Expand Up @@ -14,9 +14,8 @@
<RepositoryUrl>https://github.com/catcherwong/EasyCaching</RepositoryUrl>
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
v0.1.0
1. Init.
<PackageReleaseNotes>
Init.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
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>
EasyCaching.Serialization.MessagePack based on EasyCaching.Core and MessagePack.
</Description>
Expand All @@ -15,11 +15,7 @@
<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. Add SerializeObject and DeserializeObject methods.

v0.1.0
1. Init.
Fix bug of AddDefaultMessagePackSerializer.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down
Expand Up @@ -14,9 +14,8 @@
<RepositoryUrl>https://github.com/catcherwong/EasyCaching</RepositoryUrl>
<ProjectUrl>https://github.com/catcherwong/EasyCaching</ProjectUrl>
<PackageIconUrl>https://raw.githubusercontent.com/catcherwong/EasyCaching/master/media/nuget-icon.png</PackageIconUrl>
<PackageReleaseNotes>
v0.1.0
1. Init.
<PackageReleaseNotes>
Init.
</PackageReleaseNotes>
</PropertyGroup>

Expand Down

0 comments on commit 40e3c37

Please sign in to comment.