From 2fe1c53028c4c903e6994683910bc9bc061c7801 Mon Sep 17 00:00:00 2001 From: DisposaBoy Date: Mon, 5 Mar 2018 16:16:22 +0000 Subject: [PATCH] ANN --- CHANGELOG.md | 20 ++++++++++++++++++++ gosubl/about.py | 4 ++-- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bad28ab3..558b365f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,28 @@ If you find GoSublime useful and would like to support me and future development please donate via one of the available methods on https://github.com/DisposaBoy/GoSublime#donations +**margo:** + +The new version of margo is close to being ready for real usage. +If you'd like to test it out, press `ctrl+.`,`ctrl+x` or `cmd+.`,`cmd+x` +to open the extension file and then save it and restart sublime text. + +Please make sure to read all the comments, as enabling it will affect GoSublime features. + **Changes:** +## 18.03.05-1 + * if no status is set, the status markers (dots) are no longer shown + * sh-bootstrap.go is now built with `go build` to improve startup time in go1.10 + * path handling on Windows was improved + * linter support should now be almost complete. + * add support for displaying issues via `ctrl+.`,`ctrl+e` or `cmd+.`,`cmd+e` + * errors for all files in the package are tracked + * the error count in the status bar is always visible if there are errors in other files + + see the example extension https://github.com/disposablue/margo/blob/master/extension-example/extension-example.go for examples of builtin linters. + + ## 18.02.17-2 * stop linking sqlite3 to avoid cgo-related compilation errors diff --git a/gosubl/about.py b/gosubl/about.py index d59542b9..b799f874 100644 --- a/gosubl/about.py +++ b/gosubl/about.py @@ -1,8 +1,8 @@ import re import sublime -ANN = 'a18.02.17-1' -VERSION = 'r18.02.17-2' +ANN = 'a18.03.05-1' +VERSION = 'r18.03.05-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)