Skip to content

Commit

Permalink
Prepare for 0.7.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangkun83 committed May 3, 2016
1 parent 07e32ba commit ac84d2c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.6](https://github.com/google/protobuf-gradle-plugin/tree/v0.7.6).
e.g., [v0.7.7](https://github.com/google/protobuf-gradle-plugin/tree/v0.7.7).

# Protobuf Plugin for Gradle
The Gradle plugin that compiles Protocol Buffer (aka. Protobuf) definition
Expand All @@ -17,15 +17,15 @@ 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.6``. It requires at least __Gradle 2.12__ and __Java 7__.
The latest version is ``0.7.7``. It requires at least __Gradle 2.12__ and __Java 7__.
It is available on Maven Central. To add dependency to it:
```gradle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.6'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.7'
}
}
```
Expand All @@ -39,7 +39,7 @@ buildscript {
}
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.7-SNAPSHOT'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.8-SNAPSHOT'
}
}
```
Expand All @@ -53,7 +53,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.7-SNAPSHOT'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.8-SNAPSHOT'
}
}
```
Expand Down Expand Up @@ -82,7 +82,7 @@ The order of the plugins doesn't matter:

```gradle
plugins {
id "com.google.protobuf" version "0.7.6"
id "com.google.protobuf" version "0.7.7"
id "java"
}
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: "com.gradle.plugin-publish"
apply plugin: 'signing'

group = 'com.google.protobuf'
version = '0.7.7-SNAPSHOT'
version = '0.7.7'

ext.isReleaseVersion = !version.endsWith("SNAPSHOT")

Expand Down

0 comments on commit ac84d2c

Please sign in to comment.