Skip to content
This repository has been archived by the owner on Apr 3, 2018. It is now read-only.

Commit

Permalink
prep 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-medeiros committed May 26, 2016
1 parent 6f4b284 commit 1069c76
Show file tree
Hide file tree
Showing 15 changed files with 22 additions and 23 deletions.
17 changes: 8 additions & 9 deletions documentation/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
## release ChangeLog

### (NextVersion)
* Improved the default names for automatically created launch configuration.
* Improved error display for Outline operation failures.

### 0.15.0
* Added support for lint build target, using `gometalinter`. (#163)
* Added customization of the build command for Build Targets:
It's now possible to specify a command other than the default one (the `go` tool).
* Note however that Goclipse still expects the output of the command (the error messages) to be in the same format as the default tool.
* Added support for invoking a specific Build Target when a $IDE editor is saved. This is called "auto-check", and is intended for build commands that only check for compilation errors, but don't produce artifacts. This has the potential to be faster than a regular build.
* The default is `` for $$IDE
* Note however that GoClipse still expects the output of the command (the error messages) to be in the same format as the `go` tool (or `gometalinter`).
* Added support for invoking a specific Build Target when a GoClipse editor is saved. This is called "auto-check", and is intended for build commands that only check for compilation errors, but don't produce artifacts. This has the potential to be faster than a regular build.
* Added [Building](documentation/UserGuide.md#building) section to documentation.
* The goal for the future is to enable invoking this command on-the-fly (as the user types), although for this to be useful in practice it will likely require the compiler to support incremental compilation (or be super fast otherwise).
* Added support for modifying the environment variables of a Build Target's build command. (#191)
* Added support for lint build target, using `gometalinter`. (#163)
* The Go `oracle` tool has been renamed to `guru`. Goclipse has been updated to reflect this.
* The Go `oracle` tool is now the `guru` tool. GoClipse has been updated to reflect this.
* Improved the default names for automatically created launch configuration.
* Improved error display for Outline operation failures.

--
* Fixed "IllegalStateException: The service has been unregistered" on Mars.2 when Eclipse is closed.
* Fixed: Don't call editor save actions (such as `gofmt`) when Open Definition is requested.

Expand Down
2 changes: 1 addition & 1 deletion feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="goclipse_feature"
label="%featureName"
version="0.14.1.qualifier"
version="0.15.0.qualifier"
provider-name="%providerName"
plugin="com.googlecode.goclipse.ui">

Expand Down
2 changes: 1 addition & 1 deletion feature/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>

<artifactId>goclipse_feature</artifactId>
<version>0.14.1-SNAPSHOT</version>
<version>0.15.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>

</project>
2 changes: 1 addition & 1 deletion plugin_ide.core.tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: com.googlecode.goclipse.core.tests;singleton:=true
Bundle-Version: 0.14.1.qualifier
Bundle-Version: 0.15.0.qualifier
Fragment-Host: com.googlecode.goclipse.core
Bundle-Vendor: %pluginProvider
Bundle-Name: %pluginNameTests
Expand Down
2 changes: 1 addition & 1 deletion plugin_ide.core.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>

<artifactId>com.googlecode.goclipse.core.tests</artifactId>
<version>0.14.1-SNAPSHOT</version>
<version>0.15.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>

<build>
Expand Down
2 changes: 1 addition & 1 deletion plugin_ide.core/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: com.googlecode.goclipse.core;singleton:=true
Bundle-Version: 0.14.1.qualifier
Bundle-Version: 0.15.0.qualifier
Bundle-Name: %pluginName
Bundle-Vendor: %pluginProvider
Bundle-Localization: plugin
Expand Down
2 changes: 1 addition & 1 deletion plugin_ide.core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>

<artifactId>com.googlecode.goclipse.core</artifactId>
<version>0.14.1-SNAPSHOT</version>
<version>0.15.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

</project>
2 changes: 1 addition & 1 deletion plugin_ide.debug/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: com.googlecode.goclipse.debug;singleton:=true
Bundle-Version: 0.14.1.qualifier
Bundle-Version: 0.15.0.qualifier
Bundle-Name: %pluginName
Bundle-Vendor: %pluginProvider
Bundle-Localization: plugin
Expand Down
2 changes: 1 addition & 1 deletion plugin_ide.debug/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>

<artifactId>com.googlecode.goclipse.debug</artifactId>
<version>0.14.1-SNAPSHOT</version>
<version>0.15.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

</project>
2 changes: 1 addition & 1 deletion plugin_ide.ui.tests/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: com.googlecode.goclipse.ui.tests;singleton:=true
Bundle-Version: 0.14.1.qualifier
Bundle-Version: 0.15.0.qualifier
Fragment-Host: com.googlecode.goclipse.ui
Bundle-Vendor: %pluginProvider
Bundle-Name: %pluginNameTests
Expand Down
2 changes: 1 addition & 1 deletion plugin_ide.ui.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>

<artifactId>com.googlecode.goclipse.ui.tests</artifactId>
<version>0.14.1-SNAPSHOT</version>
<version>0.15.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>

<build>
Expand Down
2 changes: 1 addition & 1 deletion plugin_ide.ui/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: com.googlecode.goclipse.ui;singleton:=true
Bundle-Version: 0.14.1.qualifier
Bundle-Version: 0.15.0.qualifier
Bundle-Name: %pluginName
Bundle-Vendor: %pluginProvider
Bundle-Localization: plugin
Expand Down
2 changes: 1 addition & 1 deletion plugin_ide.ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>

<artifactId>com.googlecode.goclipse.ui</artifactId>
<version>0.14.1-SNAPSHOT</version>
<version>0.15.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>

</project>
2 changes: 1 addition & 1 deletion plugin_tooling/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-SymbolicName: com.googlecode.goclipse.tooling;singleton:=true
Bundle-Version: 0.14.1.qualifier
Bundle-Version: 0.15.0.qualifier
Bundle-Name: %pluginName
Bundle-Vendor: %pluginProvider
Bundle-Localization: plugin
Expand Down
2 changes: 1 addition & 1 deletion plugin_tooling/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</parent>

<artifactId>com.googlecode.goclipse.tooling</artifactId>
<version>0.14.1-SNAPSHOT</version>
<version>0.15.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>

<properties>
Expand Down

0 comments on commit 1069c76

Please sign in to comment.