0.8.0 released
Behavioral change
No longer add javanano
by default for Android projects. This is to align with the release of Protobuf 3.0.0 which promotes protobuf-lite instead of nano as the recommended flavor for Android. Please refer to README.md (look for "javalite").
If you want to continue using nano, you will need to add it manually, for example:
protobuf {
generateProtoTasks {
all()*.builtins {
javanano { }
}
}
}
Bug fixes
- Stop complaining about Gradle version on 3.0.
- Stop using deprecated API on Gradle 3.0
Logistics
- Refactored tests to use TestKit. No longer needs to install locally before running tests. (by @ngyukman)
- Travis support (by @jaredsburrows)