Skip to content

Commit

Permalink
1.0.1-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
mattqs committed Aug 25, 2017
1 parent cc41f84 commit 7aec9b0
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@
<Compile Include="ComponentEmitterTests\EmitterTests.cs" />
<Compile Include="ModulesTests\ParseQSTests.cs" />
<Compile Include="ModulesTests\UTF8Tests.cs" />
<Compile Include="ParserTests\DecodeTests.cs" />
<Compile Include="ParserTests\TestsParser.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Folder Include="ParserTests\" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<ProjectReference Include="..\EngineIoClientDotNet.net35\EngineIoClientDotNet.net35.csproj">
<Project>{568d67d0-3253-4601-9b04-7730a9ec5cc0}</Project>
Expand Down
5 changes: 0 additions & 5 deletions Src/EngineIoClientDotNet.mono/Client/Socket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -672,11 +672,6 @@ private Task WaitForUpgrade()
log.Info("Wait for upgrade timeout");
break;
}
else
{
// yield to another thread
System.Threading.Thread.Yield();
}
}
tcs.SetResult(null);
}
Expand Down
2 changes: 1 addition & 1 deletion Src/EngineIoClientDotNet.mono/Parser/Packet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public static void DecodePayload(string data, IDecodePayloadCallback callback)

if (msg.Length != 0)
{
Packet packet = DecodePacket(msg, false);
Packet packet = DecodePacket(msg, true);
if (_err.Type == packet.Type && _err.Data == packet.Data)
{
callback.Call(_err, 0, 1);
Expand Down
4 changes: 2 additions & 2 deletions Src/EngineIoClientDotNet.net35/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
[assembly: AssemblyVersion("1.0.1")]
[assembly: AssemblyFileVersion("1.0.1")]
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,12 @@
<Compile Include="..\EngineIoClientDotNet.mono\Thread\EasyTimer_net40.cs">
<Link>Thread\EasyTimer_net40.cs</Link>
</Compile>
<Compile Include="..\EngineIoClientDotNet.mono\Thread\Heartbeat_net35.cs">
<Link>Thread\Heartbeat_net35.cs</Link>
</Compile>
<Compile Include="..\EngineIoClientDotNet.mono\Thread\TriggeredLoopTimer_net35.cs">
<Link>Thread\TriggeredLoopTimer_net35.cs</Link>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Src/EngineIoClientDotNet.net40/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
4 changes: 2 additions & 2 deletions Src/EngineIoClientDotNet.net45/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<Description>This is the Engine.IO Client Library for C#.</Description>
<PackageProjectUrl>https://github.com/Quobject/EngineIoClientDotNet/</PackageProjectUrl>
<Version>1.0.0.1-beta1</Version>
<Version>1.0.1-beta1</Version>
<Copyright>Copyright © 2017</Copyright>
<RepositoryUrl>https://github.com/Quobject/EngineIoClientDotNet/</RepositoryUrl>
<AssemblyVersion>1.0.0.1</AssemblyVersion>
<FileVersion>1.0.0.1</FileVersion>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<FileVersion>1.0.1.0</FileVersion>
<RootNamespace>Quobject.EngineIoClientDotNet</RootNamespace>
<AssemblyName>EngineIoClientDotNet</AssemblyName>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion TestServer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"private": true,
"dependencies": {
"engine.io": "^3.1.0",
"engine.io": "^1.8.4",
"express": "^4.15.3",
"strip-json-comments": "^2.0.1"
}
Expand Down
2 changes: 1 addition & 1 deletion grunt/config.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0.1",
"version": "1.0.1-beta1",
"server": {
"port": 80,
"ssl_port": 443,
Expand Down

0 comments on commit 7aec9b0

Please sign in to comment.