Skip to content

Commit

Permalink
Prepare for 0.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangkun83 committed Feb 16, 2017
1 parent e412da3 commit 5b1de9c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,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.8.0``. It requires at least __Gradle 2.12__ and __Java 7__.
The latest version is ``0.8.1``. 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.8.0'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.1'
}
}
```
Expand All @@ -42,7 +42,7 @@ buildscript {
}
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.1-SNAPSHOT'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.2-SNAPSHOT'
}
}
```
Expand All @@ -56,7 +56,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.1-SNAPSHOT'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.2-SNAPSHOT'
}
}
```
Expand Down Expand Up @@ -96,7 +96,7 @@ The order of the plugins doesn't matter:

```gradle
plugins {
id "com.google.protobuf" version "0.8.0"
id "com.google.protobuf" version "0.8.1"
id "java"
}
```
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ apply plugin: 'com.gradle.plugin-publish'
apply plugin: 'com.github.ben-manes.versions'

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

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

Expand Down

0 comments on commit 5b1de9c

Please sign in to comment.