From 732270f5c81107d1b8e694df7c6d61081cd3fd4b Mon Sep 17 00:00:00 2001 From: Bruno Medeiros Date: Thu, 29 Oct 2015 15:51:57 +0000 Subject: [PATCH] prep 0.13.0 --- documentation/ChangeLog.md | 17 ++++++++--------- feature/feature.xml | 2 +- feature/pom.xml | 2 +- plugin_ide.core.tests/META-INF/MANIFEST.MF | 2 +- plugin_ide.core.tests/pom.xml | 2 +- plugin_ide.core/META-INF/MANIFEST.MF | 2 +- plugin_ide.core/pom.xml | 2 +- plugin_ide.debug/META-INF/MANIFEST.MF | 2 +- plugin_ide.debug/pom.xml | 2 +- plugin_ide.ui.tests/META-INF/MANIFEST.MF | 2 +- plugin_ide.ui.tests/pom.xml | 2 +- plugin_ide.ui/META-INF/MANIFEST.MF | 2 +- plugin_ide.ui/pom.xml | 2 +- plugin_tooling/META-INF/MANIFEST.MF | 2 +- plugin_tooling/pom.xml | 2 +- 15 files changed, 22 insertions(+), 23 deletions(-) diff --git a/documentation/ChangeLog.md b/documentation/ChangeLog.md index 8fcbc964c..6440c1b1d 100644 --- a/documentation/ChangeLog.md +++ b/documentation/ChangeLog.md @@ -1,19 +1,18 @@ ## release ChangeLog -### (NextVersion) - * Fixed: Quick outline breaks when file begins with `/* */`. (#160) - * Fixed: Preferences: custom setting for gofmt command is not saved. (#166) - * Syntax highlighting now works on the source compare editor/viewer. +### 0.13.0 + * Added support for Eclipse dark theme (#131). Namely: + * Syntax/source coloring now have different settings for dark theme. + * Fixed Tools Console colors, as well as content assist pop-up colors. * Added number literals syntax highlighting. (#138) + * Syntax highlighting now works on the source compare editor/viewer. * Added per-project compiler installation preferences. (#152) * Newly created launch configurations now have the debug option "Stop on startup at:" set to false by default. This way debugging won't stop on the C `main`, which is essentially useless outside of C/C++. + * Fixed: Quick outline breaks when file begins with `/* */`. (#160) + * Fixed: Preferences: custom setting for gofmt command is not saved. (#166) * Fixed: AssertionFailureException pressing Enter after source with more closing braces than opening ones. - * Added support for Eclipse dark theme (#131). Namely: - * Syntax/source coloring now have different settings for dark theme. - * Fixed tools console colors, as well as content assist pop-up colors. - * Changed default settings for syntax/source highlighting (non-dark themes). * Fixed: Unindent (Shift-Tab) broken, does nothing after empty lines in selection. - * Fixed Outline broken, due to error "CommonException: Invalid line, out of bounds". (#156) + * Fixed: Outline broken, due to error "CommonException: Invalid line, out of bounds". (#156) ### 0.12.1 * Go build now displays GOOS and GOARCH environment variables in build/tools console, if a non-default value is set. diff --git a/feature/feature.xml b/feature/feature.xml index d127aba59..6cc0e0561 100644 --- a/feature/feature.xml +++ b/feature/feature.xml @@ -2,7 +2,7 @@ diff --git a/feature/pom.xml b/feature/pom.xml index 9f6fc6c6d..2f72e51fb 100644 --- a/feature/pom.xml +++ b/feature/pom.xml @@ -11,7 +11,7 @@ goclipse_feature - 0.12.1-SNAPSHOT + 0.13.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 2ee16b534..45018ecd1 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.12.1.qualifier +Bundle-Version: 0.13.0.qualifier Bundle-Name: com.googlecode.goclipse.core Tests Fragment-Host: com.googlecode.goclipse.core Bundle-RequiredExecutionEnvironment: JavaSE-1.8 diff --git a/plugin_ide.core.tests/pom.xml b/plugin_ide.core.tests/pom.xml index 19b71a306..e8012cc8d 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.12.1-SNAPSHOT + 0.13.0-SNAPSHOT eclipse-test-plugin diff --git a/plugin_ide.core/META-INF/MANIFEST.MF b/plugin_ide.core/META-INF/MANIFEST.MF index bda403736..d021c836d 100644 --- a/plugin_ide.core/META-INF/MANIFEST.MF +++ b/plugin_ide.core/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: GoClipse Core Bundle-SymbolicName: com.googlecode.goclipse.core;singleton:=true -Bundle-Version: 0.12.1.qualifier +Bundle-Version: 0.13.0.qualifier Bundle-Activator: com.googlecode.goclipse.Activator Require-Bundle: org.junit;bundle-version="4.11.0";resolution:=optional, org.eclipse.core.runtime;bundle-version="3.9.0";visibility:=reexport, diff --git a/plugin_ide.core/pom.xml b/plugin_ide.core/pom.xml index 1fb845bf8..e1b3ec354 100644 --- a/plugin_ide.core/pom.xml +++ b/plugin_ide.core/pom.xml @@ -11,7 +11,7 @@ com.googlecode.goclipse.core - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT eclipse-plugin diff --git a/plugin_ide.debug/META-INF/MANIFEST.MF b/plugin_ide.debug/META-INF/MANIFEST.MF index e5498755e..9477cdc9c 100644 --- a/plugin_ide.debug/META-INF/MANIFEST.MF +++ b/plugin_ide.debug/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: GoClipse Debug Bundle-SymbolicName: com.googlecode.goclipse.debug;singleton:=true -Bundle-Version: 0.12.1.qualifier +Bundle-Version: 0.13.0.qualifier Bundle-Localization: plugin Bundle-Activator: com.googlecode.goclipse.debug.ui.GoDebugUI Bundle-Vendor: github.com/Goclipse diff --git a/plugin_ide.debug/pom.xml b/plugin_ide.debug/pom.xml index 5af434ee4..10c9d0862 100644 --- a/plugin_ide.debug/pom.xml +++ b/plugin_ide.debug/pom.xml @@ -11,7 +11,7 @@ com.googlecode.goclipse.debug - 0.12.1-SNAPSHOT + 0.13.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 332de9c88..785fdfde8 100644 --- a/plugin_ide.ui.tests/META-INF/MANIFEST.MF +++ b/plugin_ide.ui.tests/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: UI Tests Bundle-SymbolicName: com.googlecode.goclipse.ui.tests;singleton:=true -Bundle-Version: 0.12.1.qualifier +Bundle-Version: 0.13.0.qualifier Fragment-Host: com.googlecode.goclipse.ui Bundle-RequiredExecutionEnvironment: JavaSE-1.8 Require-Bundle: org.junit;bundle-version="4.10.0", diff --git a/plugin_ide.ui.tests/pom.xml b/plugin_ide.ui.tests/pom.xml index c05d453cf..5c49e9a00 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.12.1-SNAPSHOT + 0.13.0-SNAPSHOT eclipse-test-plugin diff --git a/plugin_ide.ui/META-INF/MANIFEST.MF b/plugin_ide.ui/META-INF/MANIFEST.MF index 1315b2801..491c30504 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.12.1.qualifier +Bundle-Version: 0.13.0.qualifier Bundle-Localization: plugin Bundle-Name: %pluginName Bundle-Vendor: %pluginProvider diff --git a/plugin_ide.ui/pom.xml b/plugin_ide.ui/pom.xml index a60be81a1..f1a717da2 100644 --- a/plugin_ide.ui/pom.xml +++ b/plugin_ide.ui/pom.xml @@ -11,7 +11,7 @@ com.googlecode.goclipse.ui - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT eclipse-plugin diff --git a/plugin_tooling/META-INF/MANIFEST.MF b/plugin_tooling/META-INF/MANIFEST.MF index a3a72a597..425f99900 100644 --- a/plugin_tooling/META-INF/MANIFEST.MF +++ b/plugin_tooling/META-INF/MANIFEST.MF @@ -2,7 +2,7 @@ Manifest-Version: 1.0 Bundle-ManifestVersion: 2 Bundle-Name: %pluginName Bundle-SymbolicName: com.googlecode.goclipse.tooling;singleton:=true -Bundle-Version: 0.12.1.qualifier +Bundle-Version: 0.13.0.qualifier Bundle-Vendor: %pluginProvider Bundle-Localization: plugin Bundle-ActivationPolicy: lazy diff --git a/plugin_tooling/pom.xml b/plugin_tooling/pom.xml index 3a3fad9ee..c6307c840 100644 --- a/plugin_tooling/pom.xml +++ b/plugin_tooling/pom.xml @@ -11,7 +11,7 @@ com.googlecode.goclipse.tooling - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT eclipse-test-plugin