Skip to content

Commit 7f3f9e5

Browse files
committed
set version to 0.3.0, fixing build
1 parent 5a61168 commit 7f3f9e5

3 files changed

Lines changed: 12 additions & 3 deletions

File tree

RELEASE_NOTES.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
#### 0.3.0 May 13 2016
2+
- BREAKING CHANGE: default byte buffer is now PooledByteBufferAllocator (unless overriden through environment variable).
3+
- Port of PooledByteBuffer (support for flexible buffer sizes).
4+
- Enables sending of multiple buffers in a single socket call.
5+
- Refreshed DefaultChannelPipeline, AbstractChannelHandlerContext.
6+
- Port of JsonObjectDecoder, DelimeterBasedFrameDecoder.
7+
- Fixes to async sending in TcpSocketChannel.
8+
- IoBufferCount, GetIoBuffer(s) introduced in IByteBuffer.
9+
110
#### 0.2.6 April 27 2016
211
- TlsHandler negotiates TLS 1.0+ on server side (#89).
312
- STEE properly supports graceful shutdown (#7).

src/DotNetty.Buffers/DotNetty.Buffers.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
3333
</PropertyGroup>
3434
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
35-
<OutputPath>bin\Signed\</OutputPath>
35+
<OutputPath>bin\Release\</OutputPath>
3636
<DefineConstants>TRACE;NOTEST</DefineConstants>
3737
<Optimize>true</Optimize>
3838
<DebugType>pdbonly</DebugType>

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.6")]
9-
[assembly: AssemblyFileVersionAttribute("0.2.6")]
8+
[assembly: AssemblyVersionAttribute("0.3.0")]
9+
[assembly: AssemblyFileVersionAttribute("0.3.0")]

0 commit comments

Comments
 (0)