Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Updated versions for 2.2.0-pre
  • Loading branch information
DamianEdwards committed Mar 27, 2014
1 parent d06d197 commit 50f4ca1
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 @@ -2,7 +2,7 @@
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MajorVersion>2</MajorVersion>
<MinorVersion>1</MinorVersion>
<MinorVersion>2</MinorVersion>
<PatchVersion>0</PatchVersion>

<!-- Change this to set the build quality of the project. Use values like "alpha", "beta", "rc1", "rtm", etc. -->
Expand Down
4 changes: 2 additions & 2 deletions src/Common/CommonVersionInfo.cs
Expand Up @@ -2,6 +2,6 @@

using System.Reflection;

[assembly: AssemblyVersion("2.1.0")]
[assembly: AssemblyVersion("2.2.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("2.1.0-pre")]
[assembly: AssemblyInformationalVersion("2.2.0-pre")]
@@ -1,6 +1,6 @@
/*global window:false */
/*!
* ASP.NET SignalR JavaScript Library v2.1.0-pre
* ASP.NET SignalR JavaScript Library v2.2.0-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.1.0-pre";
$.signalR.version = "2.2.0-pre";
}(window.jQuery));
2 changes: 1 addition & 1 deletion src/Microsoft.AspNet.SignalR.Client/Connection.cs
Expand Up @@ -868,7 +868,7 @@ private static string CreateUserAgentString(string client)
if (_assemblyVersion == null)
{
#if NETFX_CORE
_assemblyVersion = new Version("2.1.0");
_assemblyVersion = new Version("2.2.0");
#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.1.0-pre
* ASP.NET SignalR JavaScript Library v2.2.0-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.1.0
version: 2.2.0
samples:
iOS and Android Samples: samples/Microsoft.AspNet.SignalR.Xamarin.Sample.sln
no_build: true
Expand Down

0 comments on commit 50f4ca1

Please sign in to comment.