Skip to content

Commit 9cc7f91

Browse files
committed
update travis build with final version strings and fix API changes
1 parent 2d4afda commit 9cc7f91

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ before_install:
2323
- "export ORG_GRADLE_PROJECT_annotationPluginVersion=${ANNOTATION_PLUGIN_VERSION}"
2424

2525
env:
26-
- PHPSTORM_ENV="skip incomplete" IDEA_VERSION="IU-202.5792.28-EAP-SNAPSHOT" PHP_PLUGIN_VERSION="202.5792.59" TWIG_PLUGIN_VERSION="202.5792.17" TOOLBOX_PLUGIN_VERSION="0.4.6" ANNOTATION_PLUGIN_VERSION="5.3" DQL_PLUGIN_VERSION="202.5792.28"
26+
- PHPSTORM_ENV="skip incomplete" IDEA_VERSION="IU-2020.2" PHP_PLUGIN_VERSION="202.6397.115" TWIG_PLUGIN_VERSION="202.6397.21" TOOLBOX_PLUGIN_VERSION="0.4.6" ANNOTATION_PLUGIN_VERSION="5.3" DQL_PLUGIN_VERSION="202.6397.59"
2727

2828
script:
2929
- "./gradlew check verifyPlugin buildPlugin"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ intellij {
4545
}
4646

4747
patchPluginXml {
48-
sinceBuild '201'
48+
sinceBuild '202'
4949
changeNotes = htmlFixer('src/main/resources/META-INF/change-notes.html')
5050
}
5151

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
ideaVersion = IU-202.5792.28-EAP-SNAPSHOT
2-
phpPluginVersion = 202.5792.59
3-
twigPluginVersion = 202.5792.17
4-
dqlPluginVersion = 202.5792.28
1+
ideaVersion = IU-2020.2
2+
phpPluginVersion = 202.6397.115
3+
twigPluginVersion = 202.6397.21
4+
dqlPluginVersion = 202.6397.59
55
toolboxPluginVersion = 0.4.6
66
annotationPluginVersion = 5.3

src/main/java/fr/adrienbrault/idea/symfony2plugin/config/ServiceLineMarkerProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ private void autowireConstructorMarker(PsiElement psiElement, Collection<? super
381381
results.add(builder.createLineMarkerInfo(psiElement));
382382
}
383383

384-
private void constraintMessagePropertyMarker(@NotNull PsiElement psiElement, @NotNull Collection<LineMarkerInfo> results) {
384+
private void constraintMessagePropertyMarker(@NotNull PsiElement psiElement, @NotNull Collection<? super LineMarkerInfo<?>> results) {
385385
PsiElement parent = psiElement.getParent();
386386
if (parent instanceof StringLiteralExpression && TranslationUtil.isConstraintPropertyField((StringLiteralExpression) parent)) {
387387
String contents = ((StringLiteralExpression) parent).getContents();

src/main/java/fr/adrienbrault/idea/symfony2plugin/dic/linemarker/YamlLineMarkerProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void collectSlowLineMarkers(@NotNull List<? extends PsiElement> psiElemen
6363
}
6464
}
6565

66-
private void visitServiceIdForResources(PsiElement leafTarget, YAMLKeyValue yamlKeyValue, @NotNull Collection<LineMarkerInfo> result) {
66+
private void visitServiceIdForResources(PsiElement leafTarget, YAMLKeyValue yamlKeyValue, @NotNull Collection<? super LineMarkerInfo<?>> result) {
6767
String resource = YamlHelper.getYamlKeyValueAsString(yamlKeyValue, "resource");
6868
if (resource == null) {
6969
return;

src/main/java/fr/adrienbrault/idea/symfony2plugin/templating/TwigLineMarkerProvider.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public void collectSlowLineMarkers(@NotNull List<? extends PsiElement> psiElemen
106106
results.add(lineOverwrites);
107107
}
108108
} else if(TwigPattern.getFunctionPattern("form_start", "form").accepts(psiElement)) {
109-
LineMarkerInfo lineOverwrites = attachFormType(psiElement);
109+
LineMarkerInfo<?> lineOverwrites = attachFormType(psiElement);
110110
if(lineOverwrites != null) {
111111
results.add(lineOverwrites);
112112
}
@@ -306,7 +306,7 @@ private LineMarkerInfo<?> attachBlockOverwrites(@NotNull PsiElement psiElement,
306306
}
307307

308308
@Nullable
309-
private LineMarkerInfo attachFormType(@NotNull PsiElement psiElement) {
309+
private LineMarkerInfo<?> attachFormType(@NotNull PsiElement psiElement) {
310310
PsiElement firstChild = psiElement.getFirstChild();
311311
if (firstChild == null) {
312312
return null;

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
]]></description>
9898

9999
<!-- please see http://confluence.jetbrains.net/display/IDEADEV/Build+Number+Ranges for description -->
100-
<idea-version since-build="201.0"/>
100+
<idea-version since-build="202.0"/>
101101

102102
<extensions defaultExtensionNs="com.jetbrains.php">
103103
<typeProvider4 implementation="fr.adrienbrault.idea.symfony2plugin.dic.SymfonyContainerTypeProvider"/>

0 commit comments

Comments
 (0)