From 13819a559050ac30f78e917ee4350498935c74a9 Mon Sep 17 00:00:00 2001 From: DisposaBoy Date: Thu, 19 Apr 2018 10:51:16 +0100 Subject: [PATCH] 18.04.19-1 --- CHANGELOG.md | 3 +++ gosubl/about.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f36e6306..e9febff2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,9 @@ Please make sure to read all the comments, as enabling it will affect GoSublime **Changes:** +## 18.04.19-1 + * fix margo build failure when `use_gs_gopath` is enabled + ## 18.03.26-1 * update gocode * fix gocode completion showing duplicate function parameter names diff --git a/gosubl/about.py b/gosubl/about.py index fd286283..1628f282 100644 --- a/gosubl/about.py +++ b/gosubl/about.py @@ -1,8 +1,8 @@ import re import sublime -ANN = 'a18.03.26-1' -VERSION = 'r18.03.26-1' +ANN = 'a18.04.19-1' +VERSION = 'r18.04.19-1' VERSION_PAT = re.compile(r'\d{2}[.]\d{2}[.]\d{2}-\d+', re.IGNORECASE) DEFAULT_GO_VERSION = 'go?' GO_VERSION_OUTPUT_PAT = re.compile(r'go\s+version\s+(\S+(?:\s+[+]\w+|\s+\([^)]+)?)', re.IGNORECASE)