Skip to content

0.17.0

Pre-release
Pre-release

Choose a tag to compare

@gabrielfeo gabrielfeo released this 31 May 21:23
· 344 commits to main since this release
29d6ca3

What's Changed

To further simplify the library API, static/companion methods of GradleEnterpriseApi are removed. To migrate, simply create your own instance of the object:

-GradleEnterpriseApi.buildsApi.getBuilds(...)
+val api = GradleEnterpriseApi.newInstance()
+api.buildsApi.getBuilds(...)

Full Changelog: 0.16.2...0.17.0