From 1ba31047ed2e113c08ef963cc729bfa5e19220a9 Mon Sep 17 00:00:00 2001 From: Piasy Date: Thu, 26 May 2016 13:35:58 +0800 Subject: [PATCH] publish v0.1.2 --- CHANGELOG.md | 2 ++ README-zh.md | 6 ++---- README.md | 6 ++---- buildSrc/build.gradle | 2 +- 4 files changed, 7 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 354c13a26..803c0afe1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,6 @@ # Change log ++ [v0.1.2](https://github.com/OkBuilds/OkBuck/releases/tag/v0.1.2) + - build debuggable apk according to gradle configuration + [v0.1.1](https://github.com/OkBuilds/OkBuck/releases/tag/v0.1.1) - fix RetroLambda classpath error - generate `.buckconfig.local`, users can customize their config in `.buckconfig` diff --git a/README-zh.md b/README-zh.md index 3f882aedd..a3991d033 100644 --- a/README-zh.md +++ b/README-zh.md @@ -6,12 +6,10 @@ ```gradle buildscript { repositories { - maven { - url "http://dl.bintray.com/okbuild/maven" - } + jcenter() } dependencies { - classpath 'com.github.okbuilds:okbuild-gradle-plugin:0.1.1' + classpath 'com.github.okbuilds:okbuild-gradle-plugin:0.1.2' } } diff --git a/README.md b/README.md index 2076c7d39..9545e8936 100644 --- a/README.md +++ b/README.md @@ -20,12 +20,10 @@ In root project `build.gradle` file: ```gradle buildscript { repositories { - maven { - url "http://dl.bintray.com/okbuild/maven" - } + jcenter() } dependencies { - classpath 'com.github.okbuilds:okbuild-gradle-plugin:0.1.1' + classpath 'com.github.okbuilds:okbuild-gradle-plugin:0.1.2' } } diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 262bfbd77..7d2d02361 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -74,7 +74,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.1' +def publishVersion = '0.1.2' group = publishGroup version = publishVersion