Skip to content

Commit

Permalink
default version GoSDK is updated to 1.12.6
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Jun 13, 2019
1 parent 62f9921 commit 43afde3
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# __2.3.2 SNAPSHOT__
- default version of GoSDK updated to 1.12.6

# __2.3.1 (14-apr-2019)__
- default version of GoSDK updated to 1.12.4
- added parameter `goCache` to provide `GOCACHE` environment variable, the default value is `${project.build.directory}/.goBuildCache`
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
![mvn-golang](https://raw.githubusercontent.com/raydac/mvn-golang/master/assets/mvngolang.png)

# Changelog
__2.3.2 SNAPSHOT__
- default version of GoSDK updated to 1.12.6

__2.3.1 (14-apr-2019)__
- default version of GoSDK updated to 1.12.4
- added parameter `goCache` to provide `GOCACHE` environment variable, the default value is `${project.build.directory}/.goBuildCache`
Expand Down
2 changes: 1 addition & 1 deletion mvn-golang-examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<version>1.0.0-SNAPSHOT</version>

<properties>
<go.sdk.version>1.12.5</go.sdk.version>
<go.sdk.version>1.12.6</go.sdk.version>
</properties>

<profiles>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<defaultValue>2.3.1</defaultValue>
</requiredProperty>
<requiredProperty key="gosdk">
<defaultValue>1.12.5</defaultValue>
<defaultValue>1.12.6</defaultValue>
</requiredProperty>
</requiredProperties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<defaultValue>2.3.1</defaultValue>
</requiredProperty>
<requiredProperty key="gosdk">
<defaultValue>1.12.5</defaultValue>
<defaultValue>1.12.6</defaultValue>
</requiredProperty>
</requiredProperties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ public abstract class AbstractGolangMojo extends AbstractMojo {
* The Go SDK version. It plays role if goRoot is undefined. Can be defined
* through system property 'mvn.golang.go.version'
*/
@Parameter(name = "goVersion", defaultValue = "1.12.5", property = "mvn.golang.go.version")
@Parameter(name = "goVersion", defaultValue = "1.12.6", property = "mvn.golang.go.version")
private String goVersion;

/**
Expand Down

0 comments on commit 43afde3

Please sign in to comment.