Skip to content

Commit 3155d17

Browse files
committed
Move to 5.2.6 / 3.2.6 Preview1
- match combination of eb1bfe5 and 986889d i.e. the upgrade to 5.2.5 / 3.2.5 Preview1 - also change README.md to use "Web API 5.x" instead of "Web API 2.x"
1 parent cf97014 commit 3155d17

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ ASP.NET MVC, Web API, Web Pages, and Razor
33

44
AppVeyor: [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/aspnet/aspnetwebstack?branch=master&svg=true)](https://ci.appveyor.com/project/aspnetci/aspnetwebstack/branch/master)
55

6-
## Note: This repo is for ASP.NET MVC 5.x, Web API 2.x, and Web Pages 3.x. For ASP.NET Core MVC, check the [MVC repo](https://github.com/aspnet/Mvc).
6+
## Note: This repo is for ASP.NET MVC 5.x, Web API 5.x, and Web Pages 3.x. For ASP.NET Core MVC, check the [MVC repo](https://github.com/aspnet/Mvc).
77

88
ASP.NET MVC is a web framework that gives you a powerful, patterns-based way to build dynamic websites and Web APIs. ASP.NET MVC enables a clean separation of concerns and gives you full control over markup.
99

1010
This repo includes:
1111

1212
* ASP.NET MVC 5.x
13-
* ASP.NET Web API 2.x
13+
* ASP.NET Web API 5.x
1414
* ASP.NET Web Pages 3.x
1515
* ASP.NET Razor 3.x
1616

@@ -26,5 +26,5 @@ Git tag|Git branch|Other products|MVC package versions|Web API package (product)
2626
[v2.1](https://github.com/aspnet/AspNetWebStack/tree/v2.1)||ASP.NET and Web Tools 2012.2, VS 2012 Update 2 (not on http://nuget.org)|v4 2012.2 Update RTM|v1 2012.2 Update RTM|v2 2012.2 Update RTM
2727
[v3.0.2](https://github.com/aspnet/AspNetWebStack/tree/v3.0.2)|[v3-rtm](https://github.com/aspnet/AspNetWebStack/tree/v3-rtm)||5.0.2|5.0.1 (2.0.1)|3.0.1
2828
[v3.1.3](https://github.com/aspnet/AspNetWebStack/tree/v3.1.3)|[v3.1-rtm](https://github.com/aspnet/AspNetWebStack/tree/v3.1-rtm)||5.1.3|5.1.2 (2.1.2)|3.1.2
29-
[v3.2.4](https://github.com/aspnet/AspNetWebStack/tree/v3.2.4)||In https://dotnet.myget.org/gallery/aspnetwebstack-dev feed; not on https://nuget.org yet|5.2.4|5.2.4 (2.2.4)|3.2.4
30-
||[master](https://github.com/aspnet/AspNetWebStack/tree/master)|New work e.g. Web API 2.2.5-preview1|||
29+
[v3.2.5](https://github.com/aspnet/AspNetWebStack/tree/v3.2.5)|||5.2.5|5.2.5|3.2.5
30+
||[master](https://github.com/aspnet/AspNetWebStack/tree/master)|New work e.g. MVC 5.2.6-preview1|||

src/CommonAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
#error Runtime projects cannot define more than one of ASPNETMVC, ASPNETWEBPAGES or ASPNETFACEBOOK
2929
#elif ASPNETMVC
3030
#if !BUILD_GENERATED_VERSION
31-
[assembly: AssemblyVersion("5.2.5.0")] // ASPNETMVC
32-
[assembly: AssemblyFileVersion("5.2.5.0")] // ASPNETMVC
31+
[assembly: AssemblyVersion("5.2.6.0")] // ASPNETMVC
32+
[assembly: AssemblyFileVersion("5.2.6.0")] // ASPNETMVC
3333
#endif
3434
[assembly: AssemblyProduct("Microsoft ASP.NET MVC")]
3535
#elif ASPNETWEBPAGES

src/CommonAssemblyInfo.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ Imports System.Runtime.InteropServices
2020
' Version numbers are automatically generated based on regular expressions.
2121
' ===========================================================================
2222

23-
<Assembly: AssemblyVersion("5.2.5.0")> 'ASPNETMVC
24-
<Assembly: AssemblyFileVersion("5.2.5.0")> 'ASPNETMVC
23+
<Assembly: AssemblyVersion("5.2.6.0")> 'ASPNETMVC
24+
<Assembly: AssemblyFileVersion("5.2.6.0")> 'ASPNETMVC
2525
<Assembly: AssemblyProduct("Microsoft ASP.NET MVC")>

src/WebApiHelpPage/Areas/HelpPage/Views/Web.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</configSections>
1010

1111
<system.web.webPages.razor>
12-
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.5.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
12+
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
1313
<pages pageBaseType="System.Web.Mvc.WebViewPage">
1414
<namespaces>
1515
<add namespace="System.Web.Mvc" />

src/WebApiHelpPage/VB/Areas/HelpPage/Views/Web.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</configSections>
1010

1111
<system.web.webPages.razor>
12-
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.5.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
12+
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=5.2.6.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
1313
<pages pageBaseType="System.Web.Mvc.WebViewPage">
1414
<namespaces>
1515
<add namespace="System.Web.Mvc" />

test/Microsoft.Web.Mvc.Test/Test/VersionTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class VersionTest
1313
public void VerifyMVCVersionChangesAreIntentional()
1414
{
1515
Version mvcVersion = VersionTestHelper.GetVersionFromAssembly("System.Web.Mvc", typeof(Controller));
16-
Assert.Equal(new Version(5, 2, 5, 0), mvcVersion);
16+
Assert.Equal(new Version(5, 2, 6, 0), mvcVersion);
1717
}
1818
}
1919
}

test/System.Web.WebPages.Test/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<dependentAssembly>
1212
<!-- Need this because the BinarySerializer uses the TypeForwardedFrom attribute and deserializes to the original assembly (MVC 2.0) for the HttpAntiForgeryException test -->
1313
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
14-
<bindingRedirect oldVersion="1.0.0.0-5.2.5.0" newVersion="5.2.5.0" />
14+
<bindingRedirect oldVersion="1.0.0.0-5.2.6.0" newVersion="5.2.6.0" />
1515
</dependentAssembly>
1616
</assemblyBinding>
1717
</runtime>

0 commit comments

Comments
 (0)