From 69ca277444e2fb403700a55ab70c5aaabc005943 Mon Sep 17 00:00:00 2001 From: Michael Herzog Date: Fri, 20 Apr 2018 12:04:18 +0200 Subject: [PATCH] Added 3.1.0 to breaking changes info --- src/Libraries/SmartStore.Core/SmartStoreVersion.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/Libraries/SmartStore.Core/SmartStoreVersion.cs b/src/Libraries/SmartStore.Core/SmartStoreVersion.cs index 1071dfe9bb..09a2b2c64b 100644 --- a/src/Libraries/SmartStore.Core/SmartStoreVersion.cs +++ b/src/Libraries/SmartStore.Core/SmartStoreVersion.cs @@ -36,12 +36,13 @@ public static class SmartStoreVersion // A release with breaking changes should definitely have at least // a greater minor version. new Version("1.2"), - new Version("1.2.1"), // MC: had to be :-( + new Version("1.2.1"), new Version("2.0"), new Version("2.1"), new Version("2.2"), new Version("2.5"), - new Version("3.0") + new Version("3.0"), + new Version("3.1") }; private const string HELP_BASEURL = "https://docs.smartstore.com/display/"; @@ -111,8 +112,8 @@ public static string GenerateHelpUrl(string languageCode, string path) public static string GetUserGuideSpaceKey(string languageCode) { return languageCode.IsCaseInsensitiveEqual("de") - ? "SDDE30" - : "SMNET30"; + ? "SDDE31" + : "SMNET31"; } ///