diff --git a/CHANGELOG.md b/CHANGELOG.md index b99f31245..f7aa4e299 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Change log ++ [v0.2.0](https://github.com/OkBuilds/OkBuck/releases/tag/v0.2.0) + - Support for generating project_config rules + - Support for provided_deps in java rules + - Promote manifest placeholders support from experimental to full supported + [v0.1.7](https://github.com/OkBuilds/OkBuck/releases/tag/v0.1.7) - Use buck's provided_deps + [v0.1.6](https://github.com/OkBuilds/OkBuck/releases/tag/v0.1.6) diff --git a/README-zh.md b/README-zh.md index bb4e61baa..1a698fe2d 100644 --- a/README-zh.md +++ b/README-zh.md @@ -9,7 +9,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.github.okbuilds:okbuild-gradle-plugin:0.1.7' + classpath 'com.github.okbuilds:okbuild-gradle-plugin:0.2.0' } } diff --git a/README.md b/README.md index f1c96fcd5..317ed4eee 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.github.okbuilds:okbuild-gradle-plugin:0.1.7' + classpath 'com.github.okbuilds:okbuild-gradle-plugin:0.2.0' } } diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index a646cde7a..90d04aac0 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -52,7 +52,7 @@ dependencies { def siteUrl = 'https://github.com/OkBuilds/OkBuck' def gitUrl = 'https://github.com/OkBuilds/OkBuck.git' def publishGroup = 'com.github.okbuilds' -def publishVersion = '0.1.7' +def publishVersion = '0.2.0' group = publishGroup version = publishVersion