From 460392dcc3e24a5f3893a29848f05993d93e877f Mon Sep 17 00:00:00 2001 From: Stanley Goldman Date: Wed, 20 Sep 2017 18:40:19 -0400 Subject: [PATCH 1/2] Removing stored procedures that crash Unity --- src/UnityExtension/Assets/Editor/GitHub.Unity/Misc/Utility.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/UnityExtension/Assets/Editor/GitHub.Unity/Misc/Utility.cs b/src/UnityExtension/Assets/Editor/GitHub.Unity/Misc/Utility.cs index 66cb612b9..6ef7b9db2 100644 --- a/src/UnityExtension/Assets/Editor/GitHub.Unity/Misc/Utility.cs +++ b/src/UnityExtension/Assets/Editor/GitHub.Unity/Misc/Utility.cs @@ -14,10 +14,6 @@ class Utility : ScriptableObject private static readonly ILogging logger = Logging.GetLogger(); public const string StatusRenameDivider = "->"; - public static readonly Regex ListBranchesRegex = - new Regex(@"^(?\*)?\s+(?[\w\d\/\-_]+)\s*(?:[a-z|0-9]{7} \[(?[\w\d\/\-\_]+)\])?"); - public static readonly Regex ListRemotesRegex = - new Regex(@"(?[\w\d\-_]+)\s+(?https?:\/\/(?(?[\w\d]+)(?::(?[\w\d]+))?)@(?[\w\d\.\/\%]+))\s+\((?fetch|push)\)"); public static readonly Regex LogCommitRegex = new Regex(@"commit\s(\S+)"); public static readonly Regex LogMergeRegex = new Regex(@"Merge:\s+(\S+)\s+(\S+)"); public static readonly Regex LogAuthorRegex = new Regex(@"Author:\s+(.+)\s<(.+)>"); From 69e62127611bbea37de78f7ee1da36767d418d3c Mon Sep 17 00:00:00 2001 From: Stanley Goldman Date: Wed, 20 Sep 2017 18:59:50 -0400 Subject: [PATCH 2/2] Bumping version to 0.21.1 --- common/SolutionInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/SolutionInfo.cs b/common/SolutionInfo.cs index 3f02b1144..9727f1f68 100644 --- a/common/SolutionInfo.cs +++ b/common/SolutionInfo.cs @@ -31,6 +31,6 @@ namespace System { internal static class AssemblyVersionInformation { - internal const string Version = "0.21.0"; + internal const string Version = "0.21.1"; } }