Skip to content

Commit

Permalink
Prepare for 0.8.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangkun83 committed Mar 7, 2018
1 parent 262f5cb commit 25f6f12
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 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.4``. It requires at least __Gradle 2.12__ and __Java 7__.
The latest version is ``0.8.5``. 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.4'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.5'
}
}
```
Expand All @@ -43,7 +43,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.5-SNAPSHOT'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.6-SNAPSHOT'
}
}
```
Expand Down Expand Up @@ -83,7 +83,7 @@ The order of the plugins doesn't matter:

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

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

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

Expand Down

0 comments on commit 25f6f12

Please sign in to comment.