diff --git a/nuget/Zyan.nuspec b/nuget/Zyan.nuspec index dfe9701..c94ed18 100644 --- a/nuget/Zyan.nuspec +++ b/nuget/Zyan.nuspec @@ -2,7 +2,7 @@ Zyan - 2.14 + 2.15 Zyan Rainbird,yallie Hagen Siegel @@ -14,6 +14,13 @@ Amazingly easy distributed application framework for .NET, Mono and Xamarin.Android What's new: + v2.15: Bugfixes and stability improvements + — #86: ZyanConnection: remoting channel registration race + — #87: TcpEx: another locking issue + — #89: InterLINQ query execution + — #90: User determination in BasicWindowsAuthProvider + — #93: Error returning List<T> or T[] + v2.14: Bugfixes and stability improvements — #85: Connection lock issue in duplex TCP channel — #83: Race condition in ZyanDispatcher related to SessionManager @@ -38,11 +45,11 @@ — #53: Updated SRP package integration to version 1.0.4. — #3: Improved the code to synchronize subscriptions when connection is restored. - v2.11: Security fixes and new features. + v2.11: Security fixes and new features — #45: Updated Zyan.SafeDeserializationHelpers package. — #44: Support for multi-step authentication and SRP-6a protocol. - v2.10: Security fixes and new features. + v2.10: Security fixes and new features — #43: Integrate Zyan.SafeDeserializationHelpers package. — #40: TcpEx: invalid TCP packet crashing a running server. — #35: NIC selection for protocols when creating a channel. @@ -51,7 +58,7 @@ — #27: Passing null instead of credentials. — #4: Fix session filters behavior. - v2.9: Bugfixes and stability improvements. + v2.9: Bugfixes and stability improvements — #17: No remote address specified for reconnect. — #16: Fix errors found by the static analysis tools bug. — #9: Call interceptors don't always initialize the call context. diff --git a/source/Zyan.Communication/Version.cs b/source/Zyan.Communication/Version.cs index 04aa65c..f743a06 100644 --- a/source/Zyan.Communication/Version.cs +++ b/source/Zyan.Communication/Version.cs @@ -1,4 +1,4 @@ using System.Reflection; -[assembly: AssemblyVersion("2.14.0.0")] -[assembly: AssemblyFileVersion("2.14.0.0")] +[assembly: AssemblyVersion("2.15.0.0")] +[assembly: AssemblyFileVersion("2.15.0.0")]