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

Commit 8b7ecd7

Browse files
authored
Merge pull request #103 from vimeo/dev
Release 2.1.4
2 parents b555eb3 + df54e04 commit 8b7ecd7

4 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Change Log
22
==========
33

4+
Version 2.1.4 *(2017-05-10)*
5+
----------------------------
6+
- Added compiler support for all Java language versions.
7+
48
Version 2.1.3 *(2017-05-01)*
59
----------------------------
610
- Improved performance of generic type adapter instantiation.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ buildscript {
4545
apply plugin: 'net.ltgt.apt'
4646
4747
dependencies {
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)
@@ -62,8 +62,8 @@ apt {
6262

6363
```groovy
6464
dependencies {
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
6969
android {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ allprojects {
2727

2828
subprojects {
2929
group = 'com.vimeo.stag'
30-
version = '2.1.3'
30+
version = '2.1.4'
3131
}

stag-library-compiler/src/main/java/com/vimeo/stag/processor/StagProcessor.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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) {

0 commit comments

Comments
 (0)