Skip to content

Commit

Permalink
bumped version to 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
davidfowl committed Dec 11, 2013
1 parent a86ea79 commit 6dcefcb
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build/Microsoft.AspNet.SignalR.versions.targets
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<MajorVersion>2</MajorVersion>
<MinorVersion>0</MinorVersion>
<PatchVersion>1</PatchVersion>
<PatchVersion>2</PatchVersion>

<!-- Change this to set the build quality of the project. Use values like "alpha", "beta", "rc1", "rtm", etc. -->
<!-- These values are used in SemVer, so make sure to always increase these alphabetically. -->
Expand Down
4 changes: 2 additions & 2 deletions src/Common/CommonVersionInfo.cs
Expand Up @@ -2,6 +2,6 @@

using System.Reflection;

[assembly: AssemblyVersion("2.0.1")]
[assembly: AssemblyVersion("2.0.2")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("2.0.1-pre")]
[assembly: AssemblyInformationalVersion("2.0.2-pre")]
@@ -1,6 +1,6 @@
/*global window:false */
/*!
* ASP.NET SignalR JavaScript Library v2.0.1-pre
* ASP.NET SignalR JavaScript Library v2.0.2-pre
* http://signalr.net/
*
* Copyright Microsoft Open Technologies, Inc. All rights reserved.
Expand Down
Expand Up @@ -3,5 +3,5 @@
/*global window:false */
/// <reference path="jquery.signalR.core.js" />
(function ($, undefined) {
$.signalR.version = "2.0.1-pre";
$.signalR.version = "2.0.2-pre";
}(window.jQuery));
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.SignalR.Client/Connection.cs
Expand Up @@ -866,7 +866,7 @@ private static string CreateUserAgentString(string client)
if (_assemblyVersion == null)
{
#if NETFX_CORE
_assemblyVersion = new Version("2.0.1");
_assemblyVersion = new Version("2.0.2");
#else
_assemblyVersion = new AssemblyName(typeof(Connection).Assembly.FullName).Version;
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.SignalR.Core/Scripts/hubs.js
@@ -1,5 +1,5 @@
/*!
* ASP.NET SignalR JavaScript Library v2.0.1-pre
* ASP.NET SignalR JavaScript Library v2.0.2-pre
* http://signalr.net/
*
* Copyright Microsoft Open Technologies, Inc. All rights reserved.
Expand Down
2 changes: 1 addition & 1 deletion xamarin/SignalRPackage/component/component.yaml
Expand Up @@ -16,7 +16,7 @@ libraries:
summary: Incredibly simple real-time web for .NET.
details: Details.md
getting-started: GettingStarted.md
version: 2.0.1
version: 2.0.2
samples:
iOS and Android Samples: samples/Microsoft.AspNet.SignalR.Xamarin.Sample.sln
no_build: true
Expand Down

0 comments on commit 6dcefcb

Please sign in to comment.