Skip to content

Commit

Permalink
updated version
Browse files Browse the repository at this point in the history
  • Loading branch information
imperugo committed Sep 1, 2019
1 parent ed72505 commit 9bf1c81
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Title>StackExchange.Redis.Extensions.AspNetCore is a library that has a set of extensions method fpr ASP.NET Core.</Title>
<Summary>StackExchange.Redis.Extensions.AspNetCore is a library that has a set of extensions method fpr ASP.NET Core with the scope to simply the library configuration into the dependency injection</Summary>
<Description>StackExchange.Redis.Extensions.AspNetCore is a library that has a set of extensions method fpr ASP.NET Core</Description>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<!--<VersionSuffix>pre</VersionSuffix>-->
<Authors>Ugo Lattanzi</Authors>
<Copyright>Ugo Lattanzi</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Description>StackExchange.Redis.Extensions is a library that extends StackExchange.Redis allowing you a set of functionality needed by common applications.

This implementation is based on Microsoft's BinarySerializer</Description>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<!--<VersionSuffix>pre</VersionSuffix>-->
<Authors>Ugo Lattanzi</Authors>
<Copyright>Ugo Lattanzi</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1242,6 +1242,7 @@ public interface IRedisDatabase
/// <returns>
/// if the object has been added return previous score. Otherwise return 0.0 when first add
/// </returns>
[Obsolete("The sync method will be removed with the next version. Please use the Async version.")]
double SortedSetAddIncrement<T>(string key, T value, double score, CommandFlags commandFlags = CommandFlags.None);

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To store complex data It requires one of the following implementations:
- StackExchange.Redis.Extensions.Protobuf
- StackExchange.Redis.Extensions.Utf8Json
- StackExchange.Redis.Extensions.Binary</Description>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<!--<VersionSuffix>pre</VersionSuffix>-->
<IncludeSource>false</IncludeSource>
<IncludeSymbols>true</IncludeSymbols>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Description>StackExchange.Redis.Extensions is a library that extends StackExchange.Redis allowing you a set of functionality needed by common applications.

This implementation is based on Jil serializer.</Description>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<!--<VersionSuffix>pre</VersionSuffix>-->
<Authors>Ugo Lattanzi</Authors>
<Copyright>Ugo Lattanzi</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>StackExchange.Redis.Extensions.LegacyConfiguration</id>
<title>StackExchange.Redis.Extensions.LegacyConfiguration</title>
<version>5.1.2</version>
<version>5.2.0</version>
<authors>Ugo Lattanzi</authors>
<owners>Ugo Lattanzi</owners>
<licenseUrl>https://github.com/imperugo/StackExchange.Redis.Extensions/blob/master/LICENSE</licenseUrl>
Expand All @@ -23,7 +23,7 @@
<language>en-US</language>
<tags>Async Redis NoSQL Client Distributed Cache PubSub Messaging</tags>
<dependencies>
<dependency id="StackExchange.Redis.Extensions.Core" version="5.1.2" />
<dependency id="StackExchange.Redis.Extensions.Core" version="5.2.0" />
</dependencies>
</metadata>
</package>
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Description>StackExchange.Redis.Extensions is a library that extends StackExchange.Redis allowing you a set of functionality needed by common applications.

This implementation is based on MsgPack serializer.</Description>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<!--<VersionSuffix>pre</VersionSuffix>-->
<Authors>Ugo Lattanzi</Authors>
<Copyright>Ugo Lattanzi</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Description>StackExchange.Redis.Extensions is a library that extends StackExchange.Redis allowing you a set of functionality needed by common applications.

This implementation is based on Newtonsoft Json.Net serializer.</Description>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<!--<VersionSuffix>pre</VersionSuffix>-->
<Authors>Ugo Lattanzi</Authors>
<Copyright>Ugo Lattanzi</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Description>StackExchange.Redis.Extensions is a library that extends StackExchange.Redis allowing you a set of functionality needed by common applications.

This implementation is based on Protobuf serializer.</Description>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<!--<VersionSuffix>pre</VersionSuffix>-->
<Authors>Ugo Lattanzi</Authors>
<Copyright>Ugo Lattanzi</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Description>StackExchange.Redis.Extensions is a library that extends StackExchange.Redis allowing you a set of functionality needed by common applications.

This implementation is based on UTF8Json serializer.</Description>
<VersionPrefix>5.1.2</VersionPrefix>
<VersionPrefix>5.2.0</VersionPrefix>
<!--<VersionSuffix>pre</VersionSuffix>-->
<Authors>Ugo Lattanzi</Authors>
<Copyright>Ugo Lattanzi</Copyright>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1340,6 +1340,7 @@ public async Task Return_items_ordered_with_exclude()
Assert.Equal(descendingList[1], testobject3);
Assert.Equal(2, descendingList.Count);
}

[Fact]
public async Task Add_IncrementItemt_To_Sorted_Set()
{
Expand All @@ -1357,7 +1358,7 @@ public async Task Add_IncrementItemt_To_Sorted_Set()
Assert.NotNull(obj);
Assert.Equal(testobject.Value.ToUniversalTime(), obj.Value.ToUniversalTime());
}

#endregion
// Sorted tests
}
}

0 comments on commit 9bf1c81

Please sign in to comment.