Skip to content

Commit 18ebe8a

Browse files
author
Stephan
committed
Version 2.1.5.54
1 parent 1cfb31f commit 18ebe8a

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Zbu.ModelsBuilder.CustomTool/source.extension.vsixmanifest

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
55
<Metadata>
66
<Identity Id="916c2f10-863f-4d87-b57c-ff69b7037498"
7-
Version="2.1.4.53"
7+
Version="2.1.5.54"
88
Language="en-US"
99
Publisher="Pilotine - ZpqrtBnk" />
1010
<DisplayName>ZpqrtBnk Umbraco ModelsBuilder Custom Tool</DisplayName>

Zbu.ModelsBuilder.Tests/CompatibilityTests.cs

+5-4
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,19 @@ public void TestCompatibility()
2020
Assert.IsFalse(IsOk(new Version(2, 0, 3, 0)));
2121
Assert.IsFalse(IsOk(new Version(2, 0, 4, 0)));
2222

23-
// client version 2.1.0-2.1.4 supported
23+
// client version 2.1.0-2.1.5 supported
2424
Assert.IsTrue(IsOk(new Version(2, 1, 0, 0)));
2525
Assert.IsTrue(IsOk(new Version(2, 1, 1, 0)));
2626
Assert.IsTrue(IsOk(new Version(2, 1, 2, 0)));
2727
Assert.IsTrue(IsOk(new Version(2, 1, 3, 0)));
2828
Assert.IsTrue(IsOk(new Version(2, 1, 4, 0)));
29+
Assert.IsTrue(IsOk(new Version(2, 1, 5, 0)));
2930

30-
// client version > 2.1.4 not supported
31-
Assert.IsFalse(IsOk(new Version(2, 1, 5, 0)));
31+
// client version > 2.1.5 not supported
32+
Assert.IsFalse(IsOk(new Version(2, 1, 6, 0)));
3233

3334
// unless client says so
34-
Assert.IsTrue(IsOk(new Version(2, 1, 5, 0), new Version(2, 1, 0, 0)));
35+
Assert.IsTrue(IsOk(new Version(2, 1, 6, 0), new Version(2, 1, 0, 0)));
3536
}
3637

3738
private static bool IsOk(Version clientVersion, Version minServerVersionSupportingClient = null)

Zbu.ModelsBuilder/Properties/CommonInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@
2828
// Also need to
2929

3030
// Assembly
31-
[assembly: AssemblyVersion("2.1.4.53")]
32-
[assembly: AssemblyFileVersion("2.1.4.53")]
31+
[assembly: AssemblyVersion("2.1.5.54")]
32+
[assembly: AssemblyFileVersion("2.1.5.54")]
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("2.1.4")]
38+
[assembly: AssemblyInformationalVersion("2.1.5")]
3939
// Do not remove this line.

0 commit comments

Comments
 (0)