This repository was archived by the owner on Aug 26, 2021. It is now read-only.
File tree Expand file tree Collapse file tree
stag-library-compiler/src/main/java/com/vimeo/stag/processor Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Change Log
22==========
33
4+ Version 2.1.4 * (2017-05-10)*
5+ ----------------------------
6+ - Added compiler support for all Java language versions.
7+
48Version 2.1.3 * (2017-05-01)*
59----------------------------
610- Improved performance of generic type adapter instantiation.
Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ buildscript {
4545apply plugin: 'net.ltgt.apt'
4646
4747dependencies {
48- compile 'com.vimeo.stag:stag-library:2.1.3 '
49- apt 'com.vimeo.stag:stag-library-compiler:2.1.3 '
48+ compile 'com.vimeo.stag:stag-library:2.1.4 '
49+ apt 'com.vimeo.stag:stag-library-compiler:2.1.4 '
5050}
5151
5252// Optional annotation processor arguments (see below)
6262
6363``` groovy
6464dependencies {
65- compile 'com.vimeo.stag:stag-library:2.1.3 '
66- annotationProcessor 'com.vimeo.stag:stag-library-compiler:2.1.3 '
65+ compile 'com.vimeo.stag:stag-library:2.1.4 '
66+ annotationProcessor 'com.vimeo.stag:stag-library-compiler:2.1.4 '
6767}
6868
6969android {
Original file line number Diff line number Diff line change @@ -27,5 +27,5 @@ allprojects {
2727
2828subprojects {
2929 group = ' com.vimeo.stag'
30- version = ' 2.1.3 '
30+ version = ' 2.1.4 '
3131}
Original file line number Diff line number Diff line change @@ -75,7 +75,8 @@ public final class StagProcessor extends AbstractProcessor {
7575
7676 @ Override
7777 public SourceVersion getSupportedSourceVersion () {
78- return SourceVersion .RELEASE_7 ;
78+ // Always try to support the latest Java version
79+ return SourceVersion .latestSupported ();
7980 }
8081
8182 private static boolean getDebugBoolean (@ NotNull ProcessingEnvironment processingEnvironment ) {
You can’t perform that action at this time.
0 commit comments