Skip to content

Commit

Permalink
0.8.8 release
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangkun83 committed Jan 16, 2019
1 parent bcf3f1a commit 2c2bad0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
14 changes: 4 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
:exclamation: Starting from version __0.7.6__, the plugin requires Gradle __2.12__ and later.
Please check your Gradle version if you see the following error:
```
Error:Unable to load class 'org.gradle.api.internal.file.collections.DefaultDirectoryFileTreeFactory'.
```

:exclamation: Please [read release notes](https://github.com/google/protobuf-gradle-plugin/releases)
before upgrading the plugin.
before upgrading the plugin, as usage or compatibility requirements may change.

# Protobuf Plugin for Gradle [![Status](https://travis-ci.org/google/protobuf-gradle-plugin.svg?branch=master)](https://travis-ci.org/google/protobuf-gradle-plugin)
The Gradle plugin that compiles Protocol Buffer (aka. Protobuf) definition
Expand All @@ -20,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.7``. It requires at least __Gradle 2.12__ and __Java 8__.
The latest version is ``0.8.8``. 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.7'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.8'
}
}
```
Expand Down Expand Up @@ -86,7 +80,7 @@ The order of the plugins doesn't matter:

```gradle
plugins {
id "com.google.protobuf" version "0.8.7"
id "com.google.protobuf" version "0.8.8"
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.8-SNAPSHOT'
version = '0.8.8'

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

Expand Down

0 comments on commit 2c2bad0

Please sign in to comment.