Skip to content

Commit 4d8b02e

Browse files
committed
refreshed build, set version to 0.2.6
1 parent 66caa64 commit 4d8b02e

4 files changed

Lines changed: 11 additions & 5 deletions

File tree

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#### 0.2.6 April 27 2016
2+
- TlsHandler negotiates TLS 1.0+ on server side (#89).
3+
- STEE properly supports graceful shutdown (#7).
4+
- UnpooledHeapByteBuffer.GetBytes honors received index and length (#88).
5+
- Port of MessageToMessageDecoder, LineBasedFrameDecoder, StringDecoder, StringEncoder, ByteProcessor and ForEachByte family of methods on Byte Buffers (#86).
6+
17
#### 0.2.5 April 14 2016
28
- Fixes regression in STEE where while evaluation of idling timeout did not account for immediately pending scheduled tasks (#83).
39

build.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ copy %CACHED_NUGET% .nuget\nuget.exe > nul
2121

2222
.nuget\NuGet.exe install FAKE -OutputDirectory packages -ExcludeVersion -Version 4.25.4
2323

24-
.nuget\NuGet.exe install xunit.runner.console -ConfigFile .nuget\Nuget.Config -OutputDirectory packages\FAKE -ExcludeVersion -Version 2.0.0
24+
.nuget\NuGet.exe install xunit.runner.console -OutputDirectory packages\FAKE -ExcludeVersion -Version 2.1.0
2525

2626
if not exist packages\SourceLink.Fake\tools\SourceLink.fsx (
2727
.nuget\nuget.exe install SourceLink.Fake -OutputDirectory packages -ExcludeVersion

build.fsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ open Fake
77
open Fake.FileUtils
88
open Fake.TaskRunnerHelper
99
open Fake.StrongNamingHelper
10+
open Fake.Testing.XUnit2
1011

1112
//--------------------------------------------------------------------------------
1213
// Information about the project for Nuget and Assembly info files
@@ -150,15 +151,14 @@ Target "BuildSigned" DoNothing
150151
// Tests targets
151152
//--------------------------------------------------------------------------------
152153

153-
open XUnit2Helper
154154
Target "RunTests" <| fun _ ->
155155
let xunitTestAssemblies = !! "test/**/bin/Release/*.Tests.dll" ++ "test/**/bin/Release/*.Tests.End2End.dll"
156156

157157
mkdir testOutput
158158
let xunitToolPath = findToolInSubPath "xunit.console.exe" "packages/xunit.runner.console*/tools"
159159
printfn "Using XUnit runner: %s" xunitToolPath
160160
xUnit2
161-
(fun p -> { p with OutputDir = testOutput; ToolPath = xunitToolPath })
161+
(fun p -> { p with XmlOutputPath = Some (testOutput + "/report.xml"); ToolPath = xunitToolPath })
162162
xunitTestAssemblies
163163

164164
//--------------------------------------------------------------------------------

src/SharedAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
[assembly: AssemblyCopyrightAttribute("Copyright © 2016")]
66
[assembly: AssemblyKeyFileAttribute("")]
77
[assembly: AssemblyDelaySignAttribute(false)]
8-
[assembly: AssemblyVersionAttribute("0.2.5")]
9-
[assembly: AssemblyFileVersionAttribute("0.2.5")]
8+
[assembly: AssemblyVersionAttribute("0.2.6")]
9+
[assembly: AssemblyFileVersionAttribute("0.2.6")]

0 commit comments

Comments
 (0)