Skip to content

Commit

Permalink
refreshed build, set version to 0.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
nayato committed Apr 28, 2016
1 parent 66caa64 commit 4d8b02e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -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).

Expand Down
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -150,15 +151,14 @@ Target "BuildSigned" DoNothing
// Tests targets
//--------------------------------------------------------------------------------

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

mkdir testOutput
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

//--------------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions src/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]

0 comments on commit 4d8b02e

Please sign in to comment.