Skip to content

Commit

Permalink
0.8.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangkun83 committed Jun 14, 2019
1 parent e3bf656 commit c63bf91
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 @@ -14,15 +14,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.8``. It requires at least __Gradle 3.0__ and __Java 8__.
The latest version is ``0.8.9``. It requires at least __Gradle 3.0__ and __Java 8__.
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.8'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.9'
}
}
```
Expand All @@ -37,7 +37,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.9-SNAPSHOT'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.9'
}
}
```
Expand Down Expand Up @@ -80,7 +80,7 @@ The order of the plugins doesn't matter:

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

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

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

Expand Down

0 comments on commit c63bf91

Please sign in to comment.