diff --git a/CHANGELOG.md b/CHANGELOG.md index f884c30e..40964224 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,19 @@ -**margo** - -This, and future, versions of GoSublime include a new version of margo that will run side-by-side with the old version until it can be completely replaced. - -Nothing should change at this time except the appearance of two new processes (`margo` and `margo.sublime`), some more noise in the console and `{• _ •}` in the status bar. - - **Donate:** If you find GoSublime useful and would like to support me and future development of GoSublime, please donate via one of the available methods on https://github.com/DisposaBoy/GoSublime#donations -or reach out to disposaboy@dby.me to discuss other options. - +**Changes:** -GoSublime Changes ------------------ +## 18.02.16 + * 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 or restart sublime text + * Highlights: + * less dependence on Python, so development should be a lot easier going forward + * it comes with integrated support for GoImports + * gocode integration now supports more options like autobuild, showing function params and autocompleting packages that have not been imported ## 18.01.17 * update gocode diff --git a/gosubl/about.py b/gosubl/about.py index 46ccabff..66246188 100644 --- a/gosubl/about.py +++ b/gosubl/about.py @@ -1,8 +1,8 @@ import re import sublime -ANN = 'a18.02.09-1' -VERSION = 'r18.01.17-1' +ANN = 'a18.02.16-1' +VERSION = 'r18.02.16-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)