From 4bb41265a4cf22843b0e4961d3f9573e0331f6dc Mon Sep 17 00:00:00 2001 From: DisposaBoy Date: Fri, 8 Dec 2017 14:21:18 +0000 Subject: [PATCH] r17.12.08-1 --- CHANGELOG.md | 3 +++ gosubl/about.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9052e679..96e9c4db 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,9 @@ GoSublime Changes ----------------- +## 17.12.08-1 + * fix broken commenting when the Go package is disabled + ## 17.11.27-1 * use the old GS syntax definitions instead of the new ones from ST to avoid regressions diff --git a/gosubl/about.py b/gosubl/about.py index a322f394..6dc3f87b 100644 --- a/gosubl/about.py +++ b/gosubl/about.py @@ -1,8 +1,8 @@ import re import sublime -ANN = 'a17.11.27-1' -VERSION = 'r17.11.27-1' +ANN = 'a17.12.08-1' +VERSION = 'r17.12.08-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)