Skip to content

Commit

Permalink
Minor fix, bump version to 3.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan committed Jan 24, 2018
1 parent a17317a commit bedc232
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@
// Also need to

// Assembly
[assembly: AssemblyVersion("3.0.9.0")]
[assembly: AssemblyFileVersion("3.0.9.0")]
[assembly: AssemblyVersion("3.0.10.102")]
[assembly: AssemblyFileVersion("3.0.10.102")]

// NuGet Package
// Note: could not release "1.8.0" because it was depending on pre-release NuGet packages
// for Roslyn, so had to release 1.8.0-final... starting with 2.1.3 Roslyn has a released
// 1.0 version, so now we can release "2.1.3" without the "-final" extension.
[assembly: AssemblyInformationalVersion("3.0.9.0")]
[assembly: AssemblyInformationalVersion("3.0.10.102")]
// Do not remove this line.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="F5C32FC3-6672-4665-803D-6C5D2CAC556A" Version="3.0.9.0" Language="en-US" Publisher="Umbraco HQ" />
<Identity Id="F5C32FC3-6672-4665-803D-6C5D2CAC556A" Version="3.0.10.102" Language="en-US" Publisher="Umbraco HQ" />
<DisplayName>Umbraco ModelsBuilder Custom Tool</DisplayName>
<Description xml:space="preserve">Umbraco Visual Studio Custom Tool for generating strongly typed IPublishedContent models.</Description>
<MoreInfo>https://github.com/zpqrtbnk/Zbu.ModelsBuilder</MoreInfo>
Expand Down
4 changes: 2 additions & 2 deletions Umbraco.ModelsBuilder/Umbraco/ModelsBuilderApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ protected override void ApplicationStarting(UmbracoApplicationBase umbracoApplic
// always setup the dashboard
InstallServerVars();

// do NOT try to do this when running 7.7.8 or below,
// do NOT try to do this when running 7.7.9 or below,
// as the RenderModelBinder.ModelBindingException does not exist
if (UmbracoVersion.Current >= new Version(7, 7, 9))
if (UmbracoVersion.Current >= new Version(7, 7, 10))
BindModelBindingException();
}

Expand Down

0 comments on commit bedc232

Please sign in to comment.