set version to 0.3.0, fixing build

This commit is contained in:
Max Gortman 2016-05-13 18:17:50 -07:00
Родитель 5a611686c4
Коммит 7f3f9e5cea
3 изменённых файлов: 12 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,12 @@
#### 0.3.0 May 13 2016
- BREAKING CHANGE: default byte buffer is now PooledByteBufferAllocator (unless overriden through environment variable).
- Port of PooledByteBuffer (support for flexible buffer sizes).
- Enables sending of multiple buffers in a single socket call.
- Refreshed DefaultChannelPipeline, AbstractChannelHandlerContext.
- Port of JsonObjectDecoder, DelimeterBasedFrameDecoder.
- Fixes to async sending in TcpSocketChannel.
- IoBufferCount, GetIoBuffer(s) introduced in IByteBuffer.
#### 0.2.6 April 27 2016
- TlsHandler negotiates TLS 1.0+ on server side (#89).
- STEE properly supports graceful shutdown (#7).

Просмотреть файл

@ -32,7 +32,7 @@
<CheckForOverflowUnderflow>false</CheckForOverflowUnderflow>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Signed|AnyCPU'">
<OutputPath>bin\Signed\</OutputPath>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;NOTEST</DefineConstants>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>

Просмотреть файл

@ -5,5 +5,5 @@ using System.Reflection;
[assembly: AssemblyCopyrightAttribute("Copyright © 2016")]
[assembly: AssemblyKeyFileAttribute("")]
[assembly: AssemblyDelaySignAttribute(false)]
[assembly: AssemblyVersionAttribute("0.2.6")]
[assembly: AssemblyFileVersionAttribute("0.2.6")]
[assembly: AssemblyVersionAttribute("0.3.0")]
[assembly: AssemblyFileVersionAttribute("0.3.0")]