Skip to content
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #103 from vimeo/dev
Browse files Browse the repository at this point in the history
Release 2.1.4
  • Loading branch information
anthonycr authored May 10, 2017
2 parents b555eb3 + df54e04 commit 8b7ecd7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Change Log
==========

Version 2.1.4 *(2017-05-10)*
----------------------------
- Added compiler support for all Java language versions.

Version 2.1.3 *(2017-05-01)*
----------------------------
- Improved performance of generic type adapter instantiation.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ buildscript {
apply plugin: 'net.ltgt.apt'
dependencies {
compile 'com.vimeo.stag:stag-library:2.1.3'
apt 'com.vimeo.stag:stag-library-compiler:2.1.3'
compile 'com.vimeo.stag:stag-library:2.1.4'
apt 'com.vimeo.stag:stag-library-compiler:2.1.4'
}
// Optional annotation processor arguments (see below)
Expand All @@ -62,8 +62,8 @@ apt {

```groovy
dependencies {
compile 'com.vimeo.stag:stag-library:2.1.3'
annotationProcessor 'com.vimeo.stag:stag-library-compiler:2.1.3'
compile 'com.vimeo.stag:stag-library:2.1.4'
annotationProcessor 'com.vimeo.stag:stag-library-compiler:2.1.4'
}
android {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ allprojects {

subprojects {
group = 'com.vimeo.stag'
version = '2.1.3'
version = '2.1.4'
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ public final class StagProcessor extends AbstractProcessor {

@Override
public SourceVersion getSupportedSourceVersion() {
return SourceVersion.RELEASE_7;
// Always try to support the latest Java version
return SourceVersion.latestSupported();
}

private static boolean getDebugBoolean(@NotNull ProcessingEnvironment processingEnvironment) {
Expand Down

0 comments on commit 8b7ecd7

Please sign in to comment.