Skip to content

Commit f91db82

Browse files
committed
0.8.10 release
1 parent faa563c commit f91db82

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ For more information about the Protobuf Compiler, please refer to
1414
[Google Developers Site](https://developers.google.com/protocol-buffers/docs/reference/java-generated?csw=1).
1515

1616
## Latest Version
17-
The latest version is ``0.8.9``. It requires at least __Gradle 3.0__ and __Java 8__.
17+
The latest version is ``0.8.10``. It requires at least __Gradle 3.0__ and __Java 8__.
1818
It is available on Maven Central. To add dependency to it:
1919
```gradle
2020
buildscript {
2121
repositories {
2222
mavenCentral()
2323
}
2424
dependencies {
25-
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.9'
25+
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.10'
2626
}
2727
}
2828
```
@@ -37,7 +37,7 @@ buildscript {
3737
mavenLocal()
3838
}
3939
dependencies {
40-
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.10-SNAPSHOT'
40+
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.10'
4141
}
4242
}
4343
```
@@ -80,7 +80,7 @@ The order of the plugins doesn't matter:
8080

8181
```gradle
8282
plugins {
83-
id "com.google.protobuf" version "0.8.9"
83+
id "com.google.protobuf" version "0.8.10"
8484
id "java"
8585
}
8686
```

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ apply plugin: 'com.gradle.plugin-publish'
1919
apply plugin: 'com.github.ben-manes.versions'
2020

2121
group = 'com.google.protobuf'
22-
version = '0.8.10-SNAPSHOT'
22+
version = '0.8.10'
2323

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

0 commit comments

Comments
 (0)