From 1fbc016e8d8ede50df5e730d826e19384b7dc7c2 Mon Sep 17 00:00:00 2001 From: Kun Zhang Date: Tue, 15 Mar 2016 13:56:25 -0700 Subject: [PATCH] Prepare for 0.7.6 release --- README.md | 12 ++++++------ build.gradle | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 8324fe9b..7a8d5ff5 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ probably reading the documentation for the __HEAD revision__, which may not apply to the released version you are using. To read the documentation of a released version, you will need to switch to the corresponding release tag, -e.g., [v0.7.5](https://github.com/google/protobuf-gradle-plugin/tree/v0.7.5). +e.g., [v0.7.6](https://github.com/google/protobuf-gradle-plugin/tree/v0.7.6). # Protobuf Plugin for Gradle The Gradle plugin that compiles Protocol Buffer (aka. Protobuf) definition @@ -17,7 +17,7 @@ For more information about the Protobuf Compiler, please refer to [Google Developers Site](https://developers.google.com/protocol-buffers/docs/reference/java-generated?csw=1). ## Latest Version -The latest version is ``0.7.5``. It requires at least Gradle 2.4 and Java 7. +The latest version is ``0.7.6``. It requires at least __Gradle 2.12__ and __Java 7__. It is available on Maven Central. To add dependency to it: ```gradle buildscript { @@ -25,7 +25,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.5' + classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.6' } } ``` @@ -39,7 +39,7 @@ buildscript { } } dependencies { - classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.6-SNAPSHOT' + classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.7-SNAPSHOT' } } ``` @@ -53,7 +53,7 @@ buildscript { mavenLocal() } dependencies { - classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.6-SNAPSHOT' + classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.7-SNAPSHOT' } } ``` @@ -82,7 +82,7 @@ The order of the plugins doesn't matter: ```gradle plugins { - id "com.google.protobuf" version "0.7.5" + id "com.google.protobuf" version "0.7.6" id "java" } ``` diff --git a/build.gradle b/build.gradle index 36b4eab4..14402869 100644 --- a/build.gradle +++ b/build.gradle @@ -20,7 +20,7 @@ apply plugin: "com.gradle.plugin-publish" apply plugin: 'signing' group = 'com.google.protobuf' -version = '0.7.6-SNAPSHOT' +version = '0.7.6' ext.isReleaseVersion = !version.endsWith("SNAPSHOT")