0.17.0
Pre-release
Pre-release
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(...)- Remove DefaultInstance by @gabrielfeo in #86
Full Changelog: 0.16.2...0.17.0