diff --git a/RedLock.nuspec b/RedLock.nuspec index 9f45992..e6642b7 100644 --- a/RedLock.nuspec +++ b/RedLock.nuspec @@ -2,7 +2,7 @@ RedLock.net - 1.5.0 + 1.6.0 RedLock.net Sam Cook Sam Cook @@ -12,6 +12,7 @@ false An implementation of the Redlock distributed lock algorithm +1.6.0 - Switch to using liblog for logging support, remove extraneous retry delay after acquire when blocking for a redis lock 1.5.0 - Add async support 1.4.0 - Add redis database number and key format configuration options 1.3.0 - Add password, SSL and connection timeout configuration options (enables use with Azure Redis Cache) diff --git a/RedLock/Properties/AssemblyInfo.cs b/RedLock/Properties/AssemblyInfo.cs index 68a5a56..e43a5da 100644 --- a/RedLock/Properties/AssemblyInfo.cs +++ b/RedLock/Properties/AssemblyInfo.cs @@ -32,8 +32,8 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.5.0")] -[assembly: AssemblyInformationalVersion("1.5.0")] -[assembly: AssemblyFileVersion("1.5.0.0")] +[assembly: AssemblyVersion("1.6.0")] +[assembly: AssemblyInformationalVersion("1.6.0")] +[assembly: AssemblyFileVersion("1.6.0.0")] [assembly: InternalsVisibleTo("RedLock.Tests")] \ No newline at end of file