Skip to content

Commit bedc232

Browse files
author
Stephan
committed
Minor fix, bump version to 3.0.10
1 parent a17317a commit bedc232

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

SolutionInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
// Also need to
2929

3030
// Assembly
31-
[assembly: AssemblyVersion("3.0.9.0")]
32-
[assembly: AssemblyFileVersion("3.0.9.0")]
31+
[assembly: AssemblyVersion("3.0.10.102")]
32+
[assembly: AssemblyFileVersion("3.0.10.102")]
3333

3434
// NuGet Package
3535
// Note: could not release "1.8.0" because it was depending on pre-release NuGet packages
3636
// for Roslyn, so had to release 1.8.0-final... starting with 2.1.3 Roslyn has a released
3737
// 1.0 version, so now we can release "2.1.3" without the "-final" extension.
38-
[assembly: AssemblyInformationalVersion("3.0.9.0")]
38+
[assembly: AssemblyInformationalVersion("3.0.10.102")]
3939
// Do not remove this line.

Umbraco.ModelsBuilder.CustomTool/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="F5C32FC3-6672-4665-803D-6C5D2CAC556A" Version="3.0.9.0" Language="en-US" Publisher="Umbraco HQ" />
4+
<Identity Id="F5C32FC3-6672-4665-803D-6C5D2CAC556A" Version="3.0.10.102" Language="en-US" Publisher="Umbraco HQ" />
55
<DisplayName>Umbraco ModelsBuilder Custom Tool</DisplayName>
66
<Description xml:space="preserve">Umbraco Visual Studio Custom Tool for generating strongly typed IPublishedContent models.</Description>
77
<MoreInfo>https://github.com/zpqrtbnk/Zbu.ModelsBuilder</MoreInfo>

Umbraco.ModelsBuilder/Umbraco/ModelsBuilderApplication.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ protected override void ApplicationStarting(UmbracoApplicationBase umbracoApplic
3434
// always setup the dashboard
3535
InstallServerVars();
3636

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

0 commit comments

Comments
 (0)