Skip to content

Commit 7aec9b0

Browse files
committed
1.0.1-beta1
1 parent cc41f84 commit 7aec9b0

File tree

10 files changed

+21
-20
lines changed

10 files changed

+21
-20
lines changed

Src/EngineIoClientDotNet.Tests.net35/EngineIoClientDotNet.Tests.net35.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@
7272
<Compile Include="ComponentEmitterTests\EmitterTests.cs" />
7373
<Compile Include="ModulesTests\ParseQSTests.cs" />
7474
<Compile Include="ModulesTests\UTF8Tests.cs" />
75+
<Compile Include="ParserTests\DecodeTests.cs" />
76+
<Compile Include="ParserTests\TestsParser.cs" />
7577
<Compile Include="Properties\AssemblyInfo.cs" />
7678
</ItemGroup>
7779
<ItemGroup>
7880
<None Include="packages.config" />
7981
</ItemGroup>
80-
<ItemGroup>
81-
<Folder Include="ParserTests\" />
82-
</ItemGroup>
82+
<ItemGroup />
8383
<ItemGroup>
8484
<ProjectReference Include="..\EngineIoClientDotNet.net35\EngineIoClientDotNet.net35.csproj">
8585
<Project>{568d67d0-3253-4601-9b04-7730a9ec5cc0}</Project>

Src/EngineIoClientDotNet.mono/Client/Socket.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -672,11 +672,6 @@ private Task WaitForUpgrade()
672672
log.Info("Wait for upgrade timeout");
673673
break;
674674
}
675-
else
676-
{
677-
// yield to another thread
678-
System.Threading.Thread.Yield();
679-
}
680675
}
681676
tcs.SetResult(null);
682677
}

Src/EngineIoClientDotNet.mono/Parser/Packet.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public static void DecodePayload(string data, IDecodePayloadCallback callback)
247247

248248
if (msg.Length != 0)
249249
{
250-
Packet packet = DecodePacket(msg, false);
250+
Packet packet = DecodePacket(msg, true);
251251
if (_err.Type == packet.Type && _err.Data == packet.Data)
252252
{
253253
callback.Call(_err, 0, 1);

Src/EngineIoClientDotNet.net35/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.0.1")]
35-
[assembly: AssemblyFileVersion("1.0.0.1")]
34+
[assembly: AssemblyVersion("1.0.1")]
35+
[assembly: AssemblyFileVersion("1.0.1")]

Src/EngineIoClientDotNet.net40/EngineIoClientDotNet.net40.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,12 @@
114114
<Compile Include="..\EngineIoClientDotNet.mono\Thread\EasyTimer_net40.cs">
115115
<Link>Thread\EasyTimer_net40.cs</Link>
116116
</Compile>
117+
<Compile Include="..\EngineIoClientDotNet.mono\Thread\Heartbeat_net35.cs">
118+
<Link>Thread\Heartbeat_net35.cs</Link>
119+
</Compile>
120+
<Compile Include="..\EngineIoClientDotNet.mono\Thread\TriggeredLoopTimer_net35.cs">
121+
<Link>Thread\TriggeredLoopTimer_net35.cs</Link>
122+
</Compile>
117123
<Compile Include="Properties\AssemblyInfo.cs" />
118124
</ItemGroup>
119125
<ItemGroup>

Src/EngineIoClientDotNet.net40/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.0.1")]
35-
[assembly: AssemblyFileVersion("1.0.0.1")]
34+
[assembly: AssemblyVersion("1.0.1.0")]
35+
[assembly: AssemblyFileVersion("1.0.1.0")]

Src/EngineIoClientDotNet.net45/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.0.0.1")]
35-
[assembly: AssemblyFileVersion("1.0.0.1")]
34+
[assembly: AssemblyVersion("1.0.1.0")]
35+
[assembly: AssemblyFileVersion("1.0.1.0")]

Src/EngineIoClientDotNet.netstandard1.3/EngineIoClientDotNet.netstandard1.3.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
66
<Description>This is the Engine.IO Client Library for C#.</Description>
77
<PackageProjectUrl>https://github.com/Quobject/EngineIoClientDotNet/</PackageProjectUrl>
8-
<Version>1.0.0.1-beta1</Version>
8+
<Version>1.0.1-beta1</Version>
99
<Copyright>Copyright © 2017</Copyright>
1010
<RepositoryUrl>https://github.com/Quobject/EngineIoClientDotNet/</RepositoryUrl>
11-
<AssemblyVersion>1.0.0.1</AssemblyVersion>
12-
<FileVersion>1.0.0.1</FileVersion>
11+
<AssemblyVersion>1.0.1.0</AssemblyVersion>
12+
<FileVersion>1.0.1.0</FileVersion>
1313
<RootNamespace>Quobject.EngineIoClientDotNet</RootNamespace>
1414
<AssemblyName>EngineIoClientDotNet</AssemblyName>
1515
</PropertyGroup>

TestServer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "0.0.0",
44
"private": true,
55
"dependencies": {
6-
"engine.io": "^3.1.0",
6+
"engine.io": "^1.8.4",
77
"express": "^4.15.3",
88
"strip-json-comments": "^2.0.1"
99
}

grunt/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0.1",
2+
"version": "1.0.1-beta1",
33
"server": {
44
"port": 80,
55
"ssl_port": 443,

0 commit comments

Comments
 (0)