Skip to content

Commit

Permalink
Version 2.1.5.54
Browse files Browse the repository at this point in the history
Stephan committed Sep 23, 2015
1 parent 1cfb31f commit 18ebe8a
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
@@ -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.4.53"
Version="2.1.5.54"
Language="en-US"
Publisher="Pilotine - ZpqrtBnk" />
<DisplayName>ZpqrtBnk Umbraco ModelsBuilder Custom Tool</DisplayName>
9 changes: 5 additions & 4 deletions Zbu.ModelsBuilder.Tests/CompatibilityTests.cs
Original file line number Diff line number Diff line change
@@ -20,18 +20,19 @@ 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.4 supported
// client version 2.1.0-2.1.5 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)));
Assert.IsTrue(IsOk(new Version(2, 1, 4, 0)));
Assert.IsTrue(IsOk(new Version(2, 1, 5, 0)));

// client version > 2.1.4 not supported
Assert.IsFalse(IsOk(new Version(2, 1, 5, 0)));
// client version > 2.1.5 not supported
Assert.IsFalse(IsOk(new Version(2, 1, 6, 0)));

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

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

// Assembly
[assembly: AssemblyVersion("2.1.4.53")]
[assembly: AssemblyFileVersion("2.1.4.53")]
[assembly: AssemblyVersion("2.1.5.54")]
[assembly: AssemblyFileVersion("2.1.5.54")]

// 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("2.1.4")]
[assembly: AssemblyInformationalVersion("2.1.5")]
// Do not remove this line.

0 comments on commit 18ebe8a

Please sign in to comment.