Skip to content
This repository has been archived by the owner on May 1, 2019. It is now read-only.

Commit

Permalink
Incremented the version number to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JSkimming committed Feb 24, 2014
1 parent 0c31e22 commit eb468a8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion IncrementVersion.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function IncrementVersion-NuSpec($file, $rank)
{
(Get-Content $file) |
% {
$exp = ([regex]'(^\s*<version>)(\d+\.\d+\.\d+)(-alpha)(</version>\s*$)')
$exp = ([regex]'(^\s*<version>)(\d+\.\d+\.\d+)(-beta)(</version>\s*$)')
$match = $exp.match($_)
if ($match.success)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ using this tokenized nuspec file.
<package xmlns="http://schemas.microsoft.com/packaging/2013/01/nuspec.xsd">
<metadata>
<id>$id$</id>
<version>0.9.0-alpha</version>
<version>0.10.0-beta</version>
<title>$title$</title>
<authors>James Skimming</authors>
<owners>James Skimming</owners>
Expand All @@ -24,7 +24,7 @@ using this tokenized nuspec file.
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Adds multi-tenant support for ASP.NET Identity using EntityFramework.

The extensibility required to support multi-tenancy is not possible with the 1.0.0 release of Microsoft.AspNet.Identity.EntityFramework, but is available in the 2.0 alpha release.</description>
The extensibility required to support multi-tenancy is not possible with the 1.0.0 release of Microsoft.AspNet.Identity.EntityFramework, but is available in the 2.0 beta release.</description>
<summary>$description$</summary>
<tags>Identity Membership Entity Framework Multitenant Multi-tenant</tags>
</metadata>
Expand Down
4 changes: 2 additions & 2 deletions src/Common/AssemblyInfoCommon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@

using System.Reflection;

[assembly: AssemblyVersion("0.9.0.0")]
[assembly: AssemblyFileVersion("0.9.0.0")]
[assembly: AssemblyVersion("0.10.0.0")]
[assembly: AssemblyFileVersion("0.10.0.0")]

0 comments on commit eb468a8

Please sign in to comment.