Skip to content

Commit

Permalink
Add support for Idea 2021.1
Browse files Browse the repository at this point in the history
  • Loading branch information
AmailP committed May 2, 2021
1 parent e866a31 commit cf5af79
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jdk:
# "sinceBuild" and "untilBuild" (from build.gradle).

env:
- IDEA_VERSION=IC-2021.1
- IDEA_VERSION=IC-2020.3

script:
Expand Down
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ repositories {

version = gitVersion()

def intellijVersion = System.getenv().getOrDefault("IDEA_VERSION", "IC-2020.3")
def intellijVersion = System.getenv().getOrDefault("IDEA_VERSION", "IC-2021.1")

def pythonPluginForVersion = [
"IC-2021.1": "PythonCore:211.6693.119",
"IC-2020.3": "PythonCore:203.5981.165",
// "IC-193.4778.7-EAP-SNAPSHOT": "PythonCore:193.4778.7",
]
Expand All @@ -42,7 +43,7 @@ publishPlugin {

patchPluginXml {
sinceBuild "203"
untilBuild "203.*"
untilBuild "211.*"
}

apply plugin: 'scala'
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
]]></description>

<change-notes><![CDATA[
0.22 - April 23, 2020
0.23 - May 3, 2021
<ul>
<li>Add support for 2020.1</li>
<li>Add support for 2021.1</li>
</ul>
]]>
</change-notes>
Expand Down

0 comments on commit cf5af79

Please sign in to comment.