Skip to content

Commit

Permalink
Update versions for 211 (2021.1) (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
tonybaloney authored Apr 11, 2021
1 parent f388cba commit b342dbf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
pycharm-version: ['2020.2']
pycharm-version: ['2021.1']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
Expand All @@ -27,7 +27,7 @@ jobs:
java-version: 11
- uses: eskatos/gradle-command-action@v1
with:
arguments: jacocoTestReport -PintellijPublishToken=FAKE_TOKEN -PintellijVersion=2020.2
arguments: jacocoTestReport -PintellijPublishToken=FAKE_TOKEN -PintellijVersion=2021.1
- name: Codecov
uses: codecov/codecov-action@v1.0.7
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PYCHARM_VERSION=2020.2
ARG PYCHARM_VERSION=2021.1
FROM ubuntu:18.04
ARG PYCHARM_VERSION
RUN echo "Building PyCharm $PYCHARM_VERSION with python-security"
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

group 'org.tonybaloney.security'
version '1.23.1'
version '1.24.0'

def ktor_version = "1.5.3"
def kotlin_version = "1.4.32"
Expand Down Expand Up @@ -44,14 +44,14 @@ intellij {
updateSinceUntilBuild false
}
// Make the intellij version overridable on the command line to support multiple build versions..
intellij.version = project.hasProperty('intellijVersion') ? project.getProperty('intellijVersion') : '203.5981-EAP-CANDIDATE-SNAPSHOT'
intellij.version = project.hasProperty('intellijVersion') ? project.getProperty('intellijVersion') : '211-EAP-SNAPSHOT'


patchPluginXml {
changeNotes """
<h2>1.23.1</h2>
<h2>1.24.0</h2>
<ul>
<li>December 2020 update of vulnerabilitiess</li>
<li>Support for 2021.1 release of PyCharm</li>
</ul>
"""
}
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<li>Scan code in your CI/CD using Docker</li>
</ul>
]]></description>
<idea-version since-build="201.5985.*" until-build="203.*" />
<idea-version since-build="201.5985.*" until-build="211.*" />

<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to target different products -->
Expand Down

0 comments on commit b342dbf

Please sign in to comment.