From 18ebe8a367f145def515c78811a1e973fa07dfa9 Mon Sep 17 00:00:00 2001 From: Stephan Date: Wed, 23 Sep 2015 16:54:07 +0200 Subject: [PATCH] Version 2.1.5.54 --- .../source.extension.vsixmanifest | 2 +- Zbu.ModelsBuilder.Tests/CompatibilityTests.cs | 9 +++++---- Zbu.ModelsBuilder/Properties/CommonInfo.cs | 6 +++--- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Zbu.ModelsBuilder.CustomTool/source.extension.vsixmanifest b/Zbu.ModelsBuilder.CustomTool/source.extension.vsixmanifest index b1a3ed38..e11c2379 100644 --- a/Zbu.ModelsBuilder.CustomTool/source.extension.vsixmanifest +++ b/Zbu.ModelsBuilder.CustomTool/source.extension.vsixmanifest @@ -4,7 +4,7 @@ xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011"> ZpqrtBnk Umbraco ModelsBuilder Custom Tool diff --git a/Zbu.ModelsBuilder.Tests/CompatibilityTests.cs b/Zbu.ModelsBuilder.Tests/CompatibilityTests.cs index 9b5e38e3..cbe4ca23 100644 --- a/Zbu.ModelsBuilder.Tests/CompatibilityTests.cs +++ b/Zbu.ModelsBuilder.Tests/CompatibilityTests.cs @@ -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) diff --git a/Zbu.ModelsBuilder/Properties/CommonInfo.cs b/Zbu.ModelsBuilder/Properties/CommonInfo.cs index 6946c6c4..071e2a21 100644 --- a/Zbu.ModelsBuilder/Properties/CommonInfo.cs +++ b/Zbu.ModelsBuilder/Properties/CommonInfo.cs @@ -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. \ No newline at end of file