diff --git a/documentation/ChangeLog.md b/documentation/ChangeLog.md index 218b26b9e..ee51b906e 100644 --- a/documentation/ChangeLog.md +++ b/documentation/ChangeLog.md @@ -1,18 +1,21 @@ ## release ChangeLog ### (NextVersion) + +### 0.16.0 + * Added documentation hover (`F2` or mouse-over the reference). Also documentation added to code completion popup. + * Added insertion of function arguments for function code completion proposals. + * Enabled `gocode`'s `propose-builtins` option, which isn't enabled by default. + * Reworked the icon and label of code completion proposals and fixed some related issues. Now the icons are consistent with the Outline icons. * Removed preference "Show error dialog if gocode failures occur" as it's no longer necessary. - * Content Assist will now distinguish between setup errors (errors that the user can fix, which are related to configuration and not the source) and other tool errors. For setup errors, a dialog will always be shown. For the other errors, if Content Assist was invoked manually, a dialog will also be shown, but if it was activated automatically the error will only be displayed in the editor status line. - * Improved `gofmt` error message text. - * Fixed: Eclipse variables not being substituted in environment-variables settings of launch configurations. - * Fixed: Project Explorer GOPATH elements not updated if project settings changed. - - * Added documentation hover (`F2` or mouse-over a reference). Also added to code completion. #TODO doc - * Added insertion of function parameters for function completion proposals. - * Enabled gocode `propose-builtins` option, which isn't enabled by default. - * Reworked the icon and label of completion proposals and fixed some related issues. Also, now the icons are consistent with the Outline icons. + * Content Assist will now distinguish between setup errors (errors that the user can fix, which are related to configuration and not the source code) and other tool errors. For setup/critical errors, a dialog will always be shown. For the other errors, if Content Assist was invoked manually, a dialog will also be shown, but if it was activated automatically the error will only be displayed in the editor status line. + * Improved `gofmt` error message. + * Added: show Project Explorer error element if project is not contained in GOPATH. + +-- + * Fixed: Eclipse variables not being substituted in environment-variable values of Build Targets and launch configurations. + * Fixed: Project Explorer GOPATH elements not updated if project GOPATH settings changed. * Fixed: Progress dialog never showing up when "Ok" pressed in LANG_NAME project properties page. - * Fixed: Eclipse variables not being substituted in environment-variable values. * Fixed: Erratic text cursor bug when typing in GOPATH field and gofmt field. ### 0.15.0 diff --git a/feature/feature.xml b/feature/feature.xml index d52669e9a..b5610f1bb 100644 --- a/feature/feature.xml +++ b/feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/feature/pom.xml b/feature/pom.xml index d60d959ff..6ffa2aae4 100644 --- a/feature/pom.xml +++ b/feature/pom.xml @@ -11,7 +11,7 @@ goclipse_feature - 0.15.0-SNAPSHOT + 0.16.0-SNAPSHOT eclipse-feature diff --git a/plugin_ide.core.tests/META-INF/MANIFEST.MF b/plugin_ide.core.tests/META-INF/MANIFEST.MF index 77c171d2d..6cc56167b 100644 --- a/plugin_ide.core.tests/META-INF/MANIFEST.MF +++ b/plugin_ide.core.tests/META-INF/MANIFEST.MF @@ -1,7 +1,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-SymbolicName: com.googlecode.goclipse.core.tests;singleton:=true -Bundle-Version: 0.15.0.qualifier +Bundle-Version: 0.16.0.qualifier Fragment-Host: com.googlecode.goclipse.core Bundle-Vendor: %pluginProvider Bundle-Name: %pluginNameTests diff --git a/plugin_ide.core.tests/pom.xml b/plugin_ide.core.tests/pom.xml index 4adcaa196..053ecd472 100644 --- a/plugin_ide.core.tests/pom.xml +++ b/plugin_ide.core.tests/pom.xml @@ -11,7 +11,7 @@ com.googlecode.goclipse.core.tests - 0.15.0-SNAPSHOT + 0.16.0-SNAPSHOT eclipse-test-plugin diff --git a/plugin_ide.core/META-INF/MANIFEST.MF b/plugin_ide.core/META-INF/MANIFEST.MF index ace94ae2b..271addc56 100644 --- a/plugin_ide.core/META-INF/MANIFEST.MF +++ b/plugin_ide.core/META-INF/MANIFEST.MF @@ -1,7 +1,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-SymbolicName: com.googlecode.goclipse.core;singleton:=true -Bundle-Version: 0.15.0.qualifier +Bundle-Version: 0.16.0.qualifier Bundle-Name: %pluginName Bundle-Vendor: %pluginProvider Bundle-Localization: plugin diff --git a/plugin_ide.core/pom.xml b/plugin_ide.core/pom.xml index 9f12dc9ef..044073e71 100644 --- a/plugin_ide.core/pom.xml +++ b/plugin_ide.core/pom.xml @@ -11,7 +11,7 @@ com.googlecode.goclipse.core - 0.15.0-SNAPSHOT + 0.16.0-SNAPSHOT eclipse-plugin diff --git a/plugin_ide.debug/META-INF/MANIFEST.MF b/plugin_ide.debug/META-INF/MANIFEST.MF index 868c24412..f3efa3ef6 100644 --- a/plugin_ide.debug/META-INF/MANIFEST.MF +++ b/plugin_ide.debug/META-INF/MANIFEST.MF @@ -1,7 +1,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-SymbolicName: com.googlecode.goclipse.debug;singleton:=true -Bundle-Version: 0.15.0.qualifier +Bundle-Version: 0.16.0.qualifier Bundle-Name: %pluginName Bundle-Vendor: %pluginProvider Bundle-Localization: plugin diff --git a/plugin_ide.debug/pom.xml b/plugin_ide.debug/pom.xml index 4985423fb..6e4436b87 100644 --- a/plugin_ide.debug/pom.xml +++ b/plugin_ide.debug/pom.xml @@ -11,7 +11,7 @@ com.googlecode.goclipse.debug - 0.15.0-SNAPSHOT + 0.16.0-SNAPSHOT eclipse-plugin diff --git a/plugin_ide.ui.tests/META-INF/MANIFEST.MF b/plugin_ide.ui.tests/META-INF/MANIFEST.MF index 6556265e7..40e07d2f8 100644 --- a/plugin_ide.ui.tests/META-INF/MANIFEST.MF +++ b/plugin_ide.ui.tests/META-INF/MANIFEST.MF @@ -1,7 +1,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-SymbolicName: com.googlecode.goclipse.ui.tests;singleton:=true -Bundle-Version: 0.15.0.qualifier +Bundle-Version: 0.16.0.qualifier Fragment-Host: com.googlecode.goclipse.ui Bundle-Vendor: %pluginProvider Bundle-Name: %pluginNameTests diff --git a/plugin_ide.ui.tests/pom.xml b/plugin_ide.ui.tests/pom.xml index 07d3ac0ad..5fb731ccd 100644 --- a/plugin_ide.ui.tests/pom.xml +++ b/plugin_ide.ui.tests/pom.xml @@ -11,7 +11,7 @@ com.googlecode.goclipse.ui.tests - 0.15.0-SNAPSHOT + 0.16.0-SNAPSHOT eclipse-test-plugin diff --git a/plugin_ide.ui/META-INF/MANIFEST.MF b/plugin_ide.ui/META-INF/MANIFEST.MF index f61ad6e3c..3acd9dca8 100644 --- a/plugin_ide.ui/META-INF/MANIFEST.MF +++ b/plugin_ide.ui/META-INF/MANIFEST.MF @@ -1,7 +1,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-SymbolicName: com.googlecode.goclipse.ui;singleton:=true -Bundle-Version: 0.15.0.qualifier +Bundle-Version: 0.16.0.qualifier Bundle-Name: %pluginName Bundle-Vendor: %pluginProvider Bundle-Localization: plugin diff --git a/plugin_ide.ui/pom.xml b/plugin_ide.ui/pom.xml index 0d80c4489..8552a4fd2 100644 --- a/plugin_ide.ui/pom.xml +++ b/plugin_ide.ui/pom.xml @@ -11,7 +11,7 @@ com.googlecode.goclipse.ui - 0.15.0-SNAPSHOT + 0.16.0-SNAPSHOT eclipse-plugin diff --git a/plugin_tooling/META-INF/MANIFEST.MF b/plugin_tooling/META-INF/MANIFEST.MF index 08e216ce5..284d643ba 100644 --- a/plugin_tooling/META-INF/MANIFEST.MF +++ b/plugin_tooling/META-INF/MANIFEST.MF @@ -1,7 +1,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-SymbolicName: com.googlecode.goclipse.tooling;singleton:=true -Bundle-Version: 0.15.0.qualifier +Bundle-Version: 0.16.0.qualifier Bundle-Name: %pluginName Bundle-Vendor: %pluginProvider Bundle-Localization: plugin diff --git a/plugin_tooling/pom.xml b/plugin_tooling/pom.xml index 5e169ef13..d7a26010d 100644 --- a/plugin_tooling/pom.xml +++ b/plugin_tooling/pom.xml @@ -11,7 +11,7 @@ com.googlecode.goclipse.tooling - 0.15.0-SNAPSHOT + 0.16.0-SNAPSHOT eclipse-test-plugin