Releases: gogradle/gogradle
Gogradle 0.11.4
This is a patch release which fixes #287
Thanks @marcofeltmann for contribution.
Gogradle 0.11.3
This is a bug-fix release which fixes #279
Gogradle 0.11.2
This is a bug-fix release which fixes #276 (comment) .
Gogradle 0.11.1
This is a patch release, which fixes:
- this issue reported by @Tarkleigh
Gogradle 0.11
Gogradle 0.11 release note
We're glad to release Gogradle 0.11.
Improvements in Gogradle 0.11
- Gradle 5.x support.
- JDK 11 support.
Breaking changes
Since Gradle 5.0, plugins are no longer allowed to register tasks with same name as Gradle internal tasks, such as init
/build
.
Most of the tasks are renamed as follows:
clean | goClean |
prepare | goPrepare |
showGopathGoroot | showGopathGoroot |
init | goInit |
resolveBuildDependencies | resolveBuildDependencies |
resolveTestDependencies | resolveTestDependencies |
installDependencies | installDependencies |
dependencies | goDependencies |
vendor | goVendor |
lock | goLock |
build | goBuild |
test | goTest |
coverage | goCover |
vet | goVet |
fmt | gofmt |
check | goCheck |
Please be aware of this change and consult Tasks for more details.
Fixed bugs
etcd dependency creates near infinite vendor folder hierarchy
Gogradle 0.10.3
This is a bug fix release which fixes #272 .
Gogradle 0.10.2
This is a patch release which fixes #243 .
Gogradle 0.10
Gogradle 0.10 is a minor release, which focuses on improving dependency resolution mechanism.
This release fixes #207
Gogradle 0.9.3
This is a patch release.
This release fixes #225
In multi-project scenario, when the JVM tries to re-lock the global cache metadata file, an OverlappingFileLockException
will be thrown.
Thanks @alanmyrvold for the contribution.
Gogradle 0.9.1
This is a patch release.
This fixes #217
Previously Gogradle registered the output with incorrect unrendered name ${GOOS}-${GOARCH}
, which would cause UP-TO-DATE
check fail.