diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index d138e0b25..7e99fe94e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,3 +1,9 @@ +#### 0.2.6 April 27 2016 +- TlsHandler negotiates TLS 1.0+ on server side (#89). +- STEE properly supports graceful shutdown (#7). +- UnpooledHeapByteBuffer.GetBytes honors received index and length (#88). +- Port of MessageToMessageDecoder, LineBasedFrameDecoder, StringDecoder, StringEncoder, ByteProcessor and ForEachByte family of methods on Byte Buffers (#86). + #### 0.2.5 April 14 2016 - Fixes regression in STEE where while evaluation of idling timeout did not account for immediately pending scheduled tasks (#83). diff --git a/build.cmd b/build.cmd index 1dbc2d741..d21cf8ac6 100644 --- a/build.cmd +++ b/build.cmd @@ -21,7 +21,7 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul .nuget\NuGet.exe install FAKE -OutputDirectory packages -ExcludeVersion -Version 4.25.4 -.nuget\NuGet.exe install xunit.runner.console -ConfigFile .nuget\Nuget.Config -OutputDirectory packages\FAKE -ExcludeVersion -Version 2.0.0 +.nuget\NuGet.exe install xunit.runner.console -OutputDirectory packages\FAKE -ExcludeVersion -Version 2.1.0 if not exist packages\SourceLink.Fake\tools\SourceLink.fsx ( .nuget\nuget.exe install SourceLink.Fake -OutputDirectory packages -ExcludeVersion diff --git a/build.fsx b/build.fsx index d5445b3b1..62a02f922 100644 --- a/build.fsx +++ b/build.fsx @@ -7,6 +7,7 @@ open Fake open Fake.FileUtils open Fake.TaskRunnerHelper open Fake.StrongNamingHelper +open Fake.Testing.XUnit2 //-------------------------------------------------------------------------------- // Information about the project for Nuget and Assembly info files @@ -150,7 +151,6 @@ Target "BuildSigned" DoNothing // Tests targets //-------------------------------------------------------------------------------- -open XUnit2Helper Target "RunTests" <| fun _ -> let xunitTestAssemblies = !! "test/**/bin/Release/*.Tests.dll" ++ "test/**/bin/Release/*.Tests.End2End.dll" @@ -158,7 +158,7 @@ Target "RunTests" <| fun _ -> let xunitToolPath = findToolInSubPath "xunit.console.exe" "packages/xunit.runner.console*/tools" printfn "Using XUnit runner: %s" xunitToolPath xUnit2 - (fun p -> { p with OutputDir = testOutput; ToolPath = xunitToolPath }) + (fun p -> { p with XmlOutputPath = Some (testOutput + "/report.xml"); ToolPath = xunitToolPath }) xunitTestAssemblies //-------------------------------------------------------------------------------- diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index 52c7c2ebf..b61fe1ee7 100644 --- a/src/SharedAssemblyInfo.cs +++ b/src/SharedAssemblyInfo.cs @@ -5,5 +5,5 @@ [assembly: AssemblyCopyrightAttribute("Copyright © 2016")] [assembly: AssemblyKeyFileAttribute("")] [assembly: AssemblyDelaySignAttribute(false)] -[assembly: AssemblyVersionAttribute("0.2.5")] -[assembly: AssemblyFileVersionAttribute("0.2.5")] +[assembly: AssemblyVersionAttribute("0.2.6")] +[assembly: AssemblyFileVersionAttribute("0.2.6")]