Skip to content

Commit

Permalink
Prepare for 0.7.4 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangkun83 committed Jan 26, 2016
1 parent 996dc50 commit b7ba080
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
probably reading the documentation for the __HEAD revision__, which may not
apply to the released version you are using. To read the documentation of a
released version, you will need to switch to the corresponding release tag,
e.g., [v0.7.3](https://github.com/google/protobuf-gradle-plugin/tree/v0.7.3).
e.g., [v0.7.4](https://github.com/google/protobuf-gradle-plugin/tree/v0.7.4).

# Protobuf Plugin for Gradle
The Gradle plugin that compiles Protocol Buffer (aka. Protobuf) definition
Expand All @@ -17,15 +17,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.7.3``. It is available on Maven Central. To add
dependency to it:
The latest version is ``0.7.4``. It requires at least Gradle 2.4 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.7.3'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.4'
}
}
```
Expand All @@ -39,7 +39,7 @@ buildscript {
}
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.4-SNAPSHOT'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.5-SNAPSHOT'
}
}
```
Expand All @@ -53,7 +53,7 @@ buildscript {
mavenLocal()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.4-SNAPSHOT'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.5-SNAPSHOT'
}
}
```
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: "com.gradle.plugin-publish"
apply plugin: 'signing'

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

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

Expand Down Expand Up @@ -102,8 +102,8 @@ if (!gradle.startParameter.taskNames.intersect(['publishPlugins'])) {
}
}

targetCompatibility = 1.6
sourceCompatibility = 1.6
targetCompatibility = 1.7
sourceCompatibility = 1.7

uploadArchives {
repositories {
Expand Down

0 comments on commit b7ba080

Please sign in to comment.