Skip to content

Commit

Permalink
Version 2.1.3.50-beta008
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan committed Jun 18, 2015
1 parent 0b6080b commit 0e28105
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Zbu.ModelsBuilder.CustomTool/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="916c2f10-863f-4d87-b57c-ff69b7037498"
Version="2.1.3.46"
Version="2.1.3.50"
Language="en-US"
Publisher="Pilotine - ZpqrtBnk" />
<DisplayName>ZpqrtBnk Umbraco ModelsBuilder Custom Tool</DisplayName>
Expand Down
9 changes: 5 additions & 4 deletions Zbu.ModelsBuilder.Tests/CompatibilityTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,17 @@ public void TestCompatibility()
Assert.IsFalse(IsOk(new Version(2, 0, 3, 0)));
Assert.IsFalse(IsOk(new Version(2, 0, 4, 0)));

// client version 2.1.0-2.1.2 supported
// client version 2.1.0-2.1.3 supported
Assert.IsTrue(IsOk(new Version(2, 1, 0, 0)));
Assert.IsTrue(IsOk(new Version(2, 1, 1, 0)));
Assert.IsTrue(IsOk(new Version(2, 1, 2, 0)));
Assert.IsTrue(IsOk(new Version(2, 1, 3, 0)));

// client version > 2.1.2 not supported
Assert.IsFalse(IsOk(new Version(2, 1, 3, 0)));
// client version > 2.1.3 not supported
Assert.IsFalse(IsOk(new Version(2, 1, 4, 0)));

// unless client says so
Assert.IsTrue(IsOk(new Version(2, 1, 3, 0), new Version(2, 1, 0, 0)));
Assert.IsTrue(IsOk(new Version(2, 1, 4, 0), new Version(2, 1, 0, 0)));
}

private static bool IsOk(Version clientVersion, Version minServerVersionSupportingClient = null)
Expand Down
6 changes: 3 additions & 3 deletions Zbu.ModelsBuilder/Properties/CommonInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
// Also need to

// Assembly
[assembly: AssemblyVersion("2.1.3.46")]
[assembly: AssemblyFileVersion("2.1.3.46")]
[assembly: AssemblyVersion("2.1.3.50")]
[assembly: AssemblyFileVersion("2.1.3.50")]

// NuGet Package
// Note: cannot release "1.8.0" because it depends on pre-release NuGet packages
// so I have to use 1.8.0-final...
[assembly: AssemblyInformationalVersion("2.1.3-beta004")]
[assembly: AssemblyInformationalVersion("2.1.3-beta008")]
// Do not remove this line.

0 comments on commit 0e28105

Please sign in to comment.